From 3e75f09c49c4cf8a1517898c50c77844d644f142 Mon Sep 17 00:00:00 2001 From: Fabio Tranchitella Date: Thu, 20 Jul 2006 19:11:48 +0000 Subject: [PATCH] Fixed a bug for binNMUs detect. --- britney.conf | 3 +-- britney.py | 5 ++--- 2 files changed, 3 insertions(+), 5 deletions(-) diff --git a/britney.conf b/britney.conf index e8516c2..ddc49a3 100644 --- a/britney.conf +++ b/britney.conf @@ -10,8 +10,7 @@ EXCUSES_OUTPUT = update.EXCUSES_py UPGRADE_OUTPUT = update.OUTPUT_py # List of release architectures -# ARCHITECTURES = i386 sparc alpha powerpc arm m68k hppa ia64 mips mipsel s390 amd64 -ARCHITECTURES = i386 hppa +ARCHITECTURES = i386 sparc alpha powerpc arm m68k hppa ia64 mips mipsel s390 amd64 # if you're not in this list, arch: all packages are allowed to break on you NOBREAKALL_ARCHES = i386 diff --git a/britney.py b/britney.py index 7da2037..08438a1 100644 --- a/britney.py +++ b/britney.py @@ -902,10 +902,9 @@ class Britney: elif anyworthdoing: excuse.addhtml("Not considered") self.excuses.append(excuse) - return False - # otherwise, return True - return True + # otherwise, return False + return False def should_upgrade_src(self, src, suite): """Check if source package should be upgraded