From 975ac48a416a3f4007452c3f89e8367a90223198 Mon Sep 17 00:00:00 2001 From: "Adam D. Barratt" Date: Tue, 23 Feb 2010 19:38:33 +0000 Subject: [PATCH] write_bugs(): Fix format string; the bug list is a string, not a number Signed-off-by: Adam D. Barratt --- britney.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/britney.py b/britney.py index b637ae3..3136c8c 100755 --- a/britney.py +++ b/britney.py @@ -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):