From: Aaron Bentley Date: Wed, 23 Mar 2005 18:36:48 +0000 (+0000) Subject: Updated comment formatting X-Git-Tag: 1.0.0~323 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=3c4b65a87349cfe6ddd4fb2acf7e4b67f2358927;p=be.git Updated comment formatting --- 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')