Skip to content

Commit

Permalink
fix #141, remove multiple newlines after each reported command
Browse files Browse the repository at this point in the history
  • Loading branch information
stolarczyk committed May 8, 2019
1 parent 3fb4f00 commit 535a4c7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pypiper/manager.py
Original file line number Diff line number Diff line change
Expand Up @@ -1266,7 +1266,7 @@ def _report_command(self, cmd, procs=None):
print(line)

with open(self.pipeline_commands_file, "a") as myfile:
myfile.write(line + "\n\n")
myfile.write(line)


###################################
Expand Down

0 comments on commit 535a4c7

Please sign in to comment.