From df0afe2f3467ae0d04f9ca4d405d59c5d89b5278 Mon Sep 17 00:00:00 2001 From: Ferhan Date: Tue, 7 Nov 2023 19:51:16 -0800 Subject: [PATCH] =?UTF-8?q?Change=20to=20make=20only=20the=20directories?= =?UTF-8?q?=20with=20repos=20to=20show=20branch=20information=20instad=20o?= =?UTF-8?q?f=20(:|=E2=9C=94)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- gitstatus.py | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) 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='')