mirror of
https://git.launchpad.net/~ubuntu-release/britney/+git/britney2-ubuntu
synced 2025-02-15 16:28:20 +00:00
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:
parent
ca99fe7f0c
commit
fcc1d1e2bc
@ -580,7 +580,7 @@ class Britney:
|
|||||||
for pkg in sorted(bugs.keys()):
|
for pkg in sorted(bugs.keys()):
|
||||||
if not bugs[pkg]:
|
if not bugs[pkg]:
|
||||||
continue
|
continue
|
||||||
f.write("%s %d\n" % (pkg, ','.join(bugs[pkg])))
|
f.write("%s %s\n" % (pkg, ','.join(bugs[pkg])))
|
||||||
f.close()
|
f.close()
|
||||||
|
|
||||||
def __maxver(self, pkg, dist):
|
def __maxver(self, pkg, dist):
|
||||||
|
Loading…
x
Reference in New Issue
Block a user