From a8e4ce0063c30c407094c7335a33ad2cae9d6197 Mon Sep 17 00:00:00 2001 From: "Adam D. Barratt" Date: Fri, 20 May 2011 20:40:48 +0000 Subject: [PATCH] Replace references to "not installable" packages with "non-installable" This reduces the number of ways in which we refer to uninstallable packages to two. Those should probably be unified further to be consistent across all parts of the code, but in the meantime this ensures that methods are internally consistent in their terminology. Signed-off-by: Adam D. Barratt --- britney.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/britney.py b/britney.py index 93a81a3..7c72a56 100755 --- a/britney.py +++ b/britney.py @@ -251,7 +251,7 @@ class Britney: # if this or the population of self.binaries below takes a very # long time, try increasing SIZEOFHASHMAP in lib/dpkg.c and rebuilding if not self.options.nuninst_cache: - self.__log("Building the list of not installable packages for the full archive", type="I") + self.__log("Building the list of non-installable packages for the full archive", type="I") self.sources = {'testing': self.read_sources(self.options.testing)} nuninst = {} for arch in self.options.architectures: @@ -266,7 +266,7 @@ class Britney: if not self.options.print_uninst: self.write_nuninst(nuninst) else: - self.__log("Not building the list of not installable packages, as requested", type="I") + self.__log("Not building the list of non-installable packages, as requested", type="I") # if running in --print-uninst mode, quit here if self.options.print_uninst: