aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--libbe/bug.py4
1 files changed, 1 insertions, 3 deletions
diff --git a/libbe/bug.py b/libbe/bug.py
index 0e54a1a..8c095c5 100644
--- a/libbe/bug.py
+++ b/libbe/bug.py
@@ -245,9 +245,7 @@ class Bug(settings_object.SavedSettingsObject):
if self.time == None:
timestring = ""
else:
- htime = utility.handy_time(self.time)
- ftime = utility.time_to_str(self.time)
- timestring = "%s (%s)" % (htime, ftime)
+ timestring = utility.time_to_str(self.time)
info = [("uuid", self.uuid),
("short-name", shortname),