From af7987c561ca5c0eba4574199b2554a20c052788 Mon Sep 17 00:00:00 2001 From: "Adam D. Barratt" Date: Tue, 10 Apr 2012 18:32:27 +0000 Subject: [PATCH] Fix transposition of arch/suite in tpu "not yet built" links Signed-off-by: Adam D. Barratt --- britney.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/britney.py b/britney.py index 6942003..becb3e9 100755 --- a/britney.py +++ b/britney.py @@ -1360,7 +1360,7 @@ class Britney(object): base = 'testing' else: base = 'stable' - text = "Not yet built on %s (relative to testing)" % (urllib.quote(arch), urllib.quote(src), urllib.quote(source_u[VERSION]), arch, base) + text = "Not yet built on %s (relative to testing)" % (urllib.quote(arch), urllib.quote(src), urllib.quote(source_u[VERSION]), base, arch) if arch in self.options.fucked_arches.split(): text = text + " (but %s isn't keeping up, so never mind)" % (arch)