My interpretation of britney's behaviour was wrong (and, strange enough, the

comment was correct); added a missing "not" for the if statement's condition.
master
Fabio Tranchitella 16 years ago
parent 523bbf139b
commit 872d087b56

@ -1137,7 +1137,7 @@ class Britney:
# if there is nothing wrong and there is something worth doing or the source
# package is not fake, then check what packages shuold be removed
if not anywrongver and (anyworthdoing or self.sources[suite][src][FAKESRC]):
if not anywrongver and (anyworthdoing or not self.sources[suite][src][FAKESRC]):
srcv = self.sources[suite][src][VERSION]
ssrc = self.same_source(source_t[VERSION], srcv)
# for every binary package produced by this source in testing for this architecture

Loading…
Cancel
Save