From b358e7085f21c09afc866b19c59bef5b404925e1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Adrian=20Schr=C3=B6ter?= Date: Mon, 11 Feb 2013 13:01:58 +0100 Subject: [PATCH] - remove debug output --- osc/core.py | 1 - 1 file changed, 1 deletion(-) diff --git a/osc/core.py b/osc/core.py index 0ad0447b8f..89a7461f3a 100644 --- a/osc/core.py +++ b/osc/core.py @@ -5301,7 +5301,6 @@ def print_jobhistory(apiurl, prj, current_package, repository, arch, format = 't st = int(node.get('starttime')) et = int(node.get('endtime')) endtime = time.strftime('%Y-%m-%d %H:%M:%S', time.localtime(et)) - print "XXX", et, st waittm = time.gmtime(et-st) if waittm.tm_mday>1: waitbuild = "%1dd %2dh %2dm %2ds" % (waittm.tm_mday-1, waittm.tm_hour, waittm.tm_min, waittm.tm_sec)