summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--subcmds/info.py10
1 files changed, 8 insertions, 2 deletions
diff --git a/subcmds/info.py b/subcmds/info.py
index 0d5696dd..b1e92e3e 100644
--- a/subcmds/info.py
+++ b/subcmds/info.py
@@ -94,13 +94,19 @@ class Info(PagedCommand):
94 self.out.nl() 94 self.out.nl()
95 95
96 self.heading("Current revision: ") 96 self.heading("Current revision: ")
97 self.headtext(p.revisionExpr) 97 self.headtext(p.GetRevisionId())
98 self.out.nl() 98 self.out.nl()
99 99
100 currentBranch = p.CurrentBranch
101 if currentBranch:
102 self.heading('Current branch: ')
103 self.headtext(currentBranch)
104 self.out.nl()
105
100 localBranches = list(p.GetBranches().keys()) 106 localBranches = list(p.GetBranches().keys())
101 self.heading("Local Branches: ") 107 self.heading("Local Branches: ")
102 self.redtext(str(len(localBranches))) 108 self.redtext(str(len(localBranches)))
103 if len(localBranches) > 0: 109 if localBranches:
104 self.text(" [") 110 self.text(" [")
105 self.text(", ".join(localBranches)) 111 self.text(", ".join(localBranches))
106 self.text("]") 112 self.text("]")