1
0
mirror of https://github.com/openSUSE/osc.git synced 2026-03-04 00:11:51 +01:00

do not crash on rdiff with 3 arguments (#571483)

Conflicts:

	osc/core.py
This commit is contained in:
2010-01-18 10:26:51 +01:00
parent 3256de79a8
commit 4eef584579

View File

@@ -3469,7 +3469,7 @@ def get_results(apiurl, prj, package, lastbuild=None, repository=[], arch=[]):
'/build/%(prj)s/%(rep)s/%(arch)s/%(pac)s/_log' % rmap
if rmap['dirty'] == 'true':
rmap['status'] += ' (outdated)'
rmap['status'] = 'state is outdated (was: %s)' % rmap['status']
else:
rmap['status'] += ' (repository is %s)' % rmap['state']