Skip to content

Commit

Permalink
fixed failure to load v4 when cfg file is absent
Browse files Browse the repository at this point in the history
AttributeError: 'tuple' object has no attribute 'extend', gromacs/tools.py, line 261, in load_v4_tools
  • Loading branch information
orbeckst committed Sep 9, 2016
1 parent 9e4aacd commit ca69b66
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gromacs/tools.py
Original file line number Diff line number Diff line change
Expand Up @@ -256,7 +256,7 @@ def load_v4_tools():
names = find_executables(os.environ['GMXBIN'])

if len(names) == 0 or len(names) > len(V4TOOLS) * 4:
names = V4TOOLS[:]
names = list(V4TOOLS)

names.extend(config.get_extra_tool_names())

Expand Down

0 comments on commit ca69b66

Please sign in to comment.