From e45f2fe84eab1596202a9ad9ad349d1d37ac68c1 Mon Sep 17 00:00:00 2001 From: Niels Thykier Date: Sun, 13 Jul 2014 09:53:50 +0200 Subject: [PATCH] britney.py: _compute_groups returns sets of tuples, not str Fix a call site to use a tuple instead of a str when testing if a package has been smooth-updated. Signed-off-by: Niels Thykier --- britney.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/britney.py b/britney.py index 42ace95..d0fcdd0 100755 --- a/britney.py +++ b/britney.py @@ -1136,7 +1136,7 @@ class Britney(object): # it "interesting" on its own. This case happens quite often with smooth updatable # packages, where the old binary "survives" a full run because it still has # reverse dependencies. - name = pkg + "/" + tpkg_data[ARCHITECTURE] + name = (pkg, tpkg_data[VERSION], tpkg_data[ARCHITECTURE]) if name not in smoothbins: anyworthdoing = True