aboutsummaryrefslogtreecommitdiffstats
path: root/libbe/bug.py
diff options
context:
space:
mode:
authorW. Trevor King <wking@drexel.edu>2009-06-22 11:50:09 -0400
committerW. Trevor King <wking@drexel.edu>2009-06-22 11:50:09 -0400
commitadbc4ed0c63b521cd87863b6d25a293f473f14d4 (patch)
treee7330b7642847b76e0bcc2858ab91973bdc54f3c /libbe/bug.py
parentcabb531e2300c5643447ccd1ffd311ee5690773a (diff)
downloadbugseverywhere-adbc4ed0c63b521cd87863b6d25a293f473f14d4.tar.gz
Only print RFC 2822 date in bug xml output.
Diffstat (limited to 'libbe/bug.py')
-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),