Only print RFC 2822 date in bug xml output.
authorW. Trevor King <wking@drexel.edu>
Mon, 22 Jun 2009 15:50:09 +0000 (11:50 -0400)
committerW. Trevor King <wking@drexel.edu>
Mon, 22 Jun 2009 15:50:09 +0000 (11:50 -0400)
libbe/bug.py

index 0e54a1ad3e2ba24379917a5d227f6b8008448c53..8c095c5c5d2976c04f7215601db13e6d20818d14 100644 (file)
@@ -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),