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 <adam@adam-barratt.org.uk>
bzr-import-20160707
Adam D. Barratt 14 years ago
parent f1d94a1cee
commit 1681787b0d

@ -595,7 +595,7 @@ class Britney:
""" """
bugs = {} bugs = {}
filename = os.path.join(basedir, "BugsV") 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): for line in open(filename):
l = line.split() l = line.split()
if len(l) != 2: if len(l) != 2:
@ -613,7 +613,7 @@ class Britney:
read_bugs. read_bugs.
""" """
filename = os.path.join(basedir, "BugsV") 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') f = open(filename, 'w')
for pkg in sorted(bugs.keys()): for pkg in sorted(bugs.keys()):
if not bugs[pkg]: if not bugs[pkg]:

Loading…
Cancel
Save