From 4eef5845796371bb5817dcc8949eda842767552f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Adrian=20Schr=C3=B6ter?= Date: Mon, 18 Jan 2010 10:26:51 +0100 Subject: [PATCH] do not crash on rdiff with 3 arguments (#571483) Conflicts: osc/core.py --- osc/core.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/osc/core.py b/osc/core.py index d37e6054..01a05916 100644 --- a/osc/core.py +++ b/osc/core.py @@ -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']