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-23 19:38:33 +00:00
parent 15f02bddd6
commit 975ac48a41

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):