Skip to content
This repository has been archived by the owner on May 13, 2019. It is now read-only.

Commit

Permalink
Bug fixing [ci skip]
Browse files Browse the repository at this point in the history
  • Loading branch information
nickpandolfi committed Dec 5, 2016
1 parent 8ddba96 commit 35716de
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions cyther/processing.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,8 @@ def initiateCompilation(args, file):
####commands = finalizeCommands(args, file)
commands = makeCommands(0, file)
if not args['concise'] and args['print_args']:
if args['watch']:
args['print_args'] = False
response = multiCall(*commands, print_commands=True)
print_commands = bool(args['watch'])
response = multiCall(*commands, print_commands=print_commands)
return response


Expand Down

0 comments on commit 35716de

Please sign in to comment.