diff options
author | W. Trevor King <wking@drexel.edu> | 2009-06-22 11:50:09 -0400 |
---|---|---|
committer | W. Trevor King <wking@drexel.edu> | 2009-06-22 11:50:09 -0400 |
commit | adbc4ed0c63b521cd87863b6d25a293f473f14d4 (patch) | |
tree | e7330b7642847b76e0bcc2858ab91973bdc54f3c /libbe/bug.py | |
parent | cabb531e2300c5643447ccd1ffd311ee5690773a (diff) | |
download | bugseverywhere-adbc4ed0c63b521cd87863b6d25a293f473f14d4.tar.gz |
Only print RFC 2822 date in bug xml output.
Diffstat (limited to 'libbe/bug.py')
-rw-r--r-- | libbe/bug.py | 4 |
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), |