From adbc4ed0c63b521cd87863b6d25a293f473f14d4 Mon Sep 17 00:00:00 2001 From: "W. Trevor King" Date: Mon, 22 Jun 2009 11:50:09 -0400 Subject: Only print RFC 2822 date in bug xml output. --- libbe/bug.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'libbe') 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), -- cgit