diff --git a/britney.py b/britney.py index fa71086..7e31c90 100755 --- a/britney.py +++ b/britney.py @@ -2001,7 +2001,9 @@ class Britney: # arch = "/", elif "/" in pkg: pkg_name, arch = pkg.split("/") - suite = "unstable" + if arch.endswith("_tpu"): + arch, suite = arch.split("_") + else: suite = "unstable" # removal of source packages = "-", elif pkg[0] == "-": pkg_name = pkg[1:]