Skip to content

Commit

Permalink
more readable presentation of the output
Browse files Browse the repository at this point in the history
  • Loading branch information
olivierverdier committed Aug 22, 2011
1 parent a08ece8 commit d8cc0aa
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion gitstatus.py
Expand Up @@ -55,5 +55,13 @@
if ahead:
remote += '%s%s' % (symbols['ahead of'], ahead)

print '\n'.join([branch,remote,staged,conflicts,changed,untracked,clean])
out = '\n'.join([
branch,
remote,
staged,
conflicts,
changed,
untracked,
clean])
print out

0 comments on commit d8cc0aa

Please sign in to comment.