Skip to content

Commit

Permalink
Keep two blank spaces between end of cmnd and next repo (#205)
Browse files Browse the repository at this point in the history
With the change in the runCmnd() function, you need to add a print("")
statement to keep two blank lines after the end of the command and the next
git repo header output.  I think having two newlines is a good separator
between git repo output.
  • Loading branch information
bartlettroscoe committed Jul 17, 2017
1 parent fcb7ac2 commit 0518ce8
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions tribits/python_utils/gitdist.py
Original file line number Diff line number Diff line change
Expand Up @@ -786,6 +786,7 @@ def runCmnd(options, cmnd):
print(cmnd)
else:
subprocess.Popen(cmnd, stdout=sys.stdout, stderr=sys.stderr).communicate()
print("")


# Determine if a command exists:
Expand Down

0 comments on commit 0518ce8

Please sign in to comment.