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>
master
Adam D. Barratt 15 years ago
parent 15f02bddd6
commit 975ac48a41

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

Loading…
Cancel
Save