From 70947f4c21d0c77457186e90c8130c751839f09e Mon Sep 17 00:00:00 2001 From: Niels Thykier Date: Tue, 7 Aug 2018 20:43:46 +0000 Subject: [PATCH] Use excuses_suffix instead of name for items At the moment, the two are identical, but they are not intended to remain identical (i.e. the name should eventually become the full suite name). Signed-off-by: Niels Thykier --- britney.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/britney.py b/britney.py index a140b9b..863c773 100755 --- a/britney.py +++ b/britney.py @@ -1632,11 +1632,11 @@ class Britney(object): if pkg in sources_t: for arch in architectures: if should_upgrade_srcarch(pkg, arch, suite.name): - upgrade_me_add("%s/%s_%s" % (pkg, arch, suite.name)) + upgrade_me_add("%s/%s_%s" % (pkg, arch, suite.excuses_suffix)) # check if the source package should be upgraded if should_upgrade_src(pkg, suite.name): - upgrade_me_add("%s_%s" % (pkg, suite.name)) + upgrade_me_add("%s_%s" % (pkg, suite.excuses_suffix)) # process the `remove' hints, if the given package is not yet in upgrade_me for hint in self.hints['remove']: