From 141d62cca1b25827cdc95402c84f98c9355870b9 Mon Sep 17 00:00:00 2001 From: "Adam D. Barratt" Date: Sat, 6 Jul 2013 11:26:11 +0000 Subject: [PATCH] Correct a thinko in a comment in should_upgrade_srcarch() A removal hint will generate both source and per-arch excuses if the version of the source package differs between testing and unstable. If the source versions are the same then only the per-arch excuses will be generated. Signed-off-by: Adam D. Barratt --- britney.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/britney.py b/britney.py index 57af9c8..ee0cbf8 100755 --- a/britney.py +++ b/britney.py @@ -1160,7 +1160,7 @@ class Britney(object): # if there is a `remove' hint and the requested version is the same as the # version in testing, then stop here and return False - # (as a side effect, a removal will generate such excuses for both the source + # (as a side effect, a removal may generate such excuses for both the source # package and its binary packages on each architecture) for hint in [ x for x in self.hints.search('remove', package=src) if self.same_source(source_t[VERSION], x.version) ]: excuse.addhtml("Removal request by %s" % (hint.user))