Skip to content

Commit

Permalink
Made invocation string a debug line again
Browse files Browse the repository at this point in the history
  • Loading branch information
kfsone committed Sep 2, 2014
1 parent cd3bc18 commit dbf7587
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion trade.py
Original file line number Diff line number Diff line change
Expand Up @@ -470,7 +470,7 @@ def editUpdate(args, stationID):

# Launch the editor
editorCommandLine = [ editor ] + editorArgs + [ absoluteFilename ]
print("# Invoking [{}]".format(str(editorCommandLine)))
if args.debug: print("# Invoking [{}]".format(str(editorCommandLine)))
result = subprocess.call(editorCommandLine)
if result != 0:
print("NOTE: Edit failed ({}), nothing to import.".format(result))
Expand Down

0 comments on commit dbf7587

Please sign in to comment.