diff options
author | W. Trevor King <wking@drexel.edu> | 2008-11-15 16:17:05 -0500 |
---|---|---|
committer | W. Trevor King <wking@drexel.edu> | 2008-11-15 16:17:05 -0500 |
commit | 2a800d09623720fc0a0c745611d627faec20a9ca (patch) | |
tree | 1bb26cb2b2a6cac2347073c1bff90b5adfa598d4 /becommands/show.py | |
parent | a6861cc61a662872783f2359019e72869636441d (diff) | |
download | bugseverywhere-2a800d09623720fc0a0c745611d627faec20a9ca.tar.gz |
becommands/show.py gives more specific bug information.
Diffstat (limited to 'becommands/show.py')
-rw-r--r-- | becommands/show.py | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/becommands/show.py b/becommands/show.py index e75c1ac..786ba29 100644 --- a/becommands/show.py +++ b/becommands/show.py @@ -26,12 +26,6 @@ def execute(args): bug_dir = cmdutil.bug_tree() 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" % time_str unique_name = cmdutil.unique_name(bug, bug_dir.list()) comments = [] name_map = {} |