From e13eb7d0cb735d2ee2dbd83b187ebc24a5d9f039 Mon Sep 17 00:00:00 2001 From: Niels Thykier Date: Sat, 29 Dec 2018 04:11:53 +0000 Subject: [PATCH] Pass correct source_data to find_smooth_updateable_binaries This fixes a thinko in e0c19b3. Thanks to ivodd for reporting it. Signed-off-by: Niels Thykier --- britney.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/britney.py b/britney.py index 3fe9969..6d606e3 100755 --- a/britney.py +++ b/britney.py @@ -984,9 +984,9 @@ class Britney(object): smoothbins = set() if is_primary_source: binaries_t = target_suite.binaries - possible_smooth_updates = [p for p in source_u.binaries if p.architecture == arch] + possible_smooth_updates = [p for p in source_t.binaries if p.architecture == arch] smoothbins = find_smooth_updateable_binaries(possible_smooth_updates, - source_suite.sources[src], + source_u, self.pkg_universe, target_suite, binaries_t,