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