From: W. Trevor King <wking@drexel.edu> Date: Mon, 22 Jun 2009 15:50:09 +0000 (-0400) Subject: Only print RFC 2822 date in bug xml output. X-Git-Tag: 1.0.0~71^2~6^2~1 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=adbc4ed0c63b521cd87863b6d25a293f473f14d4;p=be.git Only print RFC 2822 date in bug xml output. --- 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),