diff options
Diffstat (limited to 'becommands/show.py')
-rw-r--r-- | becommands/show.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/becommands/show.py b/becommands/show.py index 77a0875..9d56a22 100644 --- a/becommands/show.py +++ b/becommands/show.py @@ -13,9 +13,9 @@ def execute(args): else: time_str = "%s (%s)" % (utility.handy_time(bug.time), utility.time_to_str(bug.time)) - print "Created: %s\n" % time_str + print "Created: %s" % time_str for comment in bug.list_comments(): - print "---------------------------" + print "--------- Comment ---------" print "From: %s" % comment.From print "Date: %s\n" % utility.time_to_str(comment.date) - print comment.body + print comment.body.rstrip('\n') |