From 6ac2a58e5365aa2b02bebdef6b5f168d904e1cee Mon Sep 17 00:00:00 2001 From: "Adam D. Barratt" Date: Thu, 28 Oct 2010 19:45:32 +0000 Subject: [PATCH] Stop trying to support partial removals from tpu; they make no sense Signed-off-by: Adam D. Barratt --- britney.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/britney.py b/britney.py index 7e31c90..a8bbee5 100755 --- a/britney.py +++ b/britney.py @@ -1995,9 +1995,7 @@ class Britney: if pkg[0] == "-" and "/" in pkg: pkg_name, arch = pkg.split("/") pkg_name = pkg_name[1:] - if arch.endswith("_tpu"): - arch, suite = arch.split("_") - else: suite = "testing" + suite = "testing" # arch = "/", elif "/" in pkg: pkg_name, arch = pkg.split("/")