diff --git a/gitstatus.py b/gitstatus.py index d944fd4e..87da104f 100755 --- a/gitstatus.py +++ b/gitstatus.py @@ -52,14 +52,14 @@ ahead = len([x for x in behead if x[0]=='>']) behind = len(behead) - ahead -out = ' '.join([ - branch, - str(ahead), - str(behind), - staged, - conflicts, - changed, - untracked, - ]) -print(out, end='') + out = ' '.join([ + branch, + str(ahead), + str(behind), + staged, + conflicts, + changed, + untracked, + ]) + print(out, end='')