Skip to content

Commit

Permalink
get: don't print comment count in header
Browse files Browse the repository at this point in the history
Not a useful header and makes it closer to WebUI.
  • Loading branch information
glebius committed Dec 27, 2023
1 parent 3dd9b03 commit 83721f3
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion bugz/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -315,7 +315,6 @@ def show_bug_info(bug, settings):
params = {'ids': [bug['id']]}
bug_comments = settings.call_bz(settings.bz.Bug.comments, params)
bug_comments = bug_comments['bugs']['%s' % bug['id']]['comments']
print('%-12s: %d' % ('Comments', len(bug_comments)))
print()
i = 0
wrapper = textwrap.TextWrapper(width=settings.columns,
Expand Down

0 comments on commit 83721f3

Please sign in to comment.