From 3c4b65a87349cfe6ddd4fb2acf7e4b67f2358927 Mon Sep 17 00:00:00 2001 From: Aaron Bentley Date: Wed, 23 Mar 2005 18:36:48 +0000 Subject: Updated comment formatting --- becommands/show.py | 6 +++--- 1 file 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') -- cgit