From 1681787b0d4e80f48965181c3533f65d88d92b0d Mon Sep 17 00:00:00 2001 From: "Adam D. Barratt" Date: Fri, 20 May 2011 20:40:06 +0000 Subject: [PATCH] Stop claiming to be reading/writing bug counts. The bug data has contained lists of bugs rather than simple counts for some time now. Update the log messages to reflect this reality. 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 29f3ce4..93a81a3 100755 --- a/britney.py +++ b/britney.py @@ -595,7 +595,7 @@ class Britney: """ bugs = {} filename = os.path.join(basedir, "BugsV") - self.__log("Loading RC bugs count from %s" % filename) + self.__log("Loading RC bugs data from %s" % filename) for line in open(filename): l = line.split() if len(l) != 2: @@ -613,7 +613,7 @@ class Britney: read_bugs. """ filename = os.path.join(basedir, "BugsV") - self.__log("Writing RC bugs count to %s" % filename) + self.__log("Writing RC bugs data to %s" % filename) f = open(filename, 'w') for pkg in sorted(bugs.keys()): if not bugs[pkg]: