diff options
Diffstat (limited to 'subcmds/info.py')
-rw-r--r-- | subcmds/info.py | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/subcmds/info.py b/subcmds/info.py index a6faf16a..96fa6a4c 100644 --- a/subcmds/info.py +++ b/subcmds/info.py | |||
@@ -195,11 +195,11 @@ class Info(PagedCommand): | |||
195 | commits = branch.commits | 195 | commits = branch.commits |
196 | date = branch.date | 196 | date = branch.date |
197 | self.text('%s %-33s (%2d commit%s, %s)' % ( | 197 | self.text('%s %-33s (%2d commit%s, %s)' % ( |
198 | branch.name == project.CurrentBranch and '*' or ' ', | 198 | branch.name == project.CurrentBranch and '*' or ' ', |
199 | branch.name, | 199 | branch.name, |
200 | len(commits), | 200 | len(commits), |
201 | len(commits) != 1 and 's' or '', | 201 | len(commits) != 1 and 's' or '', |
202 | date)) | 202 | date)) |
203 | self.out.nl() | 203 | self.out.nl() |
204 | 204 | ||
205 | for commit in commits: | 205 | for commit in commits: |