diff options
author | Aaron Bentley <abentley@panoramicfeedback.com> | 2005-03-23 18:36:48 +0000 |
---|---|---|
committer | Aaron Bentley <abentley@panoramicfeedback.com> | 2005-03-23 18:36:48 +0000 |
commit | 3c4b65a87349cfe6ddd4fb2acf7e4b67f2358927 (patch) | |
tree | cead091e2a2759c41a3bd9ad42d686b531c19912 /becommands | |
parent | 474c701d79c3c7b54fcfcbcbc4be183ccadf7f21 (diff) | |
download | bugseverywhere-3c4b65a87349cfe6ddd4fb2acf7e4b67f2358927.tar.gz |
Updated comment formatting
Diffstat (limited to 'becommands')
-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') |