1
0
mirror of https://github.com/openSUSE/osc.git synced 2024-12-28 10:46:15 +01:00

increase size of package field for jobhistory output.

(Product build packages are usually longer than 24 chars)
This commit is contained in:
Adrian Schröter 2009-02-25 08:39:29 +00:00
parent accc64ad41
commit 7bd970716c

View File

@ -2847,7 +2847,7 @@ def print_jobhistory(apiurl, prj, current_package, platform, arch):
else:
waitbuild = " %2dm %2ds" % (waittm.tm_min, waittm.tm_sec)
print '%s %-25s %-16s %-16s %s' % (endtime, package[0:24], reason[0:15], code[0:15], waitbuild)
print '%s %-50s %-16s %-16s %s' % (endtime, package[0:49], reason[0:15], code[0:15], waitbuild)
def get_commitlog(apiurl, prj, package, revision):