aboutsummaryrefslogtreecommitdiffstats
path: root/becommands/show.py
diff options
context:
space:
mode:
authorAaron Bentley <abentley@panoramicfeedback.com>2005-03-23 15:28:29 +0000
committerAaron Bentley <abentley@panoramicfeedback.com>2005-03-23 15:28:29 +0000
commit03b878916280732d45c474c106eb3d70b4be5e9e (patch)
tree496b27b5f6ab3dc8fc8ba5b9ef6e0bea62af6ff8 /becommands/show.py
parent43d8c19ae299bab2cba0f29b560396ba6d8bd1a5 (diff)
downloadbugseverywhere-03b878916280732d45c474c106eb3d70b4be5e9e.tar.gz
Added datestamps to bugs
Diffstat (limited to 'becommands/show.py')
-rw-r--r--becommands/show.py12
1 files changed, 9 insertions, 3 deletions
diff --git a/becommands/show.py b/becommands/show.py
index 3d1c9ed..3ec5ec4 100644
--- a/becommands/show.py
+++ b/becommands/show.py
@@ -1,10 +1,16 @@
"""Show a particular bug"""
-from libbe import bugdir, cmdutil
+from libbe import bugdir, cmdutil, utility
import os
def execute(args):
bug_dir = cmdutil.bug_tree()
if len(args) !=1:
raise cmdutil.UserError("Please specify a bug id.")
- print cmdutil.bug_summary(cmdutil.get_bug(args[0], bug_dir),
- list(bug_dir.list()))
+ bug = cmdutil.get_bug(args[0], bug_dir)
+ print cmdutil.bug_summary(bug, list(bug_dir.list())).rstrip("\n")
+ if bug.time is None:
+ time_str = "(Unknown time)"
+ else:
+ time_str = "%s (%s)" % (utility.handy_time(bug.time),
+ utility.time_to_str(bug.time))
+ print "Created: %s\n" % time_str