Commit 56d45074 by Michael DeHaan

Merge pull request #1200 from broferek/master

Fix for issue #1194
parents 9bab05ba 17423c92
...@@ -118,7 +118,7 @@ def which_cmdfile(): ...@@ -118,7 +118,7 @@ def which_cmdfile():
if os.path.exists(path): if os.path.exists(path):
for line in open(path): for line in open(path):
if line.startswith('command_file'): if line.startswith('command_file'):
return line.partition('=')[2].strip() return line.split('=')[1].strip()
return None return None
......
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