write_bugs(): Fix format string; the bug list is a string, not a number

Signed-off-by: Adam D. Barratt <adam@adam-barratt.org.uk>
This commit is contained in:
Adam D. Barratt 2010-02-28 14:44:36 +00:00
parent ca99fe7f0c
commit fcc1d1e2bc

View File

@ -580,7 +580,7 @@ class Britney:
for pkg in sorted(bugs.keys()):
if not bugs[pkg]:
continue
f.write("%s %d\n" % (pkg, ','.join(bugs[pkg])))
f.write("%s %s\n" % (pkg, ','.join(bugs[pkg])))
f.close()
def __maxver(self, pkg, dist):