Commit 4537062c authored by Robert McGibbon's avatar Robert McGibbon
Browse files

Fix typo

parent 2084a6b0
...@@ -759,10 +759,10 @@ class GromacsTopFile(object): ...@@ -759,10 +759,10 @@ class GromacsTopFile(object):
return sys return sys
def _defaultGromacsIncludeDir(): def _defaultGromacsIncludeDir():
"""Find the location where gromacs #include files are referenced from, by searching """Find the location where gromacs #include files are referenced from, by
for (1) gromacs environment variavles in the prsented system, (2) for the gromacs searching for (1) gromacs environment variables, (2) for the gromacs binary
binary 'pdb2gmx' in the PATH, or (3) just using the default gromacs install location, 'pdb2gmx' in the PATH, or (3) just using the default gromacs install
/usr/local/gromacs/share/gromacs/top """ location, /usr/local/gromacs/share/gromacs/top """
if 'GMXDATA' in os.environ: if 'GMXDATA' in os.environ:
return os.path.join(os.environ['GMXDATA'], 'top') return os.path.join(os.environ['GMXDATA'], 'top')
if 'GMXBIN' in os.environ: if 'GMXBIN' in os.environ:
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment