From 53c338581ba4297356757940ee05c8d8556daea5 Mon Sep 17 00:00:00 2001 From: Martin Pitt Date: Wed, 2 Mar 2016 11:40:14 +0100 Subject: [PATCH] Don't check components when testing PPAs, as they do not have this concept --- britney.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/britney.py b/britney.py index da99bbf..f7e526d 100755 --- a/britney.py +++ b/britney.py @@ -1144,7 +1144,7 @@ class Britney(object): # (if present) if (op == '' and version == '') or apt_pkg.check_dep(package[VERSION], op, version): if archqual is None or (archqual == 'any' and package[MULTIARCH] == 'allowed'): - if allowed_component(component, package[COMPONENT]): + if self.options.adt_ppas or allowed_component(component, package[COMPONENT]): packages.append(name) # look for the package in the virtual packages list and loop on them