mirror of
https://git.launchpad.net/~ubuntu-release/britney/+git/britney2-ubuntu
synced 2025-05-08 09:01:36 +00:00
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 <niels@thykier.net>
This commit is contained in:
parent
d63b5a95d8
commit
e45f2fe84e
@ -1136,7 +1136,7 @@ class Britney(object):
|
|||||||
# it "interesting" on its own. This case happens quite often with smooth updatable
|
# 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
|
# packages, where the old binary "survives" a full run because it still has
|
||||||
# reverse dependencies.
|
# reverse dependencies.
|
||||||
name = pkg + "/" + tpkg_data[ARCHITECTURE]
|
name = (pkg, tpkg_data[VERSION], tpkg_data[ARCHITECTURE])
|
||||||
if name not in smoothbins:
|
if name not in smoothbins:
|
||||||
anyworthdoing = True
|
anyworthdoing = True
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user