[Blends-commit] [SCM] website branch, master, updated. 219414799a855d60217a220bcc61c627d13ef9e3
Andreas Tille
tille at debian.org
Mon Sep 9 09:37:46 UTC 2013
The following commit has been merged in the master branch:
commit 219414799a855d60217a220bcc61c627d13ef9e3
Author: Andreas Tille <tille at debian.org>
Date: Mon Sep 9 11:41:48 2013 +0200
Properly separate tags by ', '
diff --git a/webtools/bugs_udd.py b/webtools/bugs_udd.py
index 569731c..db439b9 100755
--- a/webtools/bugs_udd.py
+++ b/webtools/bugs_udd.py
@@ -186,6 +186,13 @@ def main():
continue
if k == 'title':
b[k] = to_unicode(bug[k])
+ elif k == 'tags':
+ komma = ''
+ b['tags'] = ''
+ if bug[k]:
+ for tag in bug[k]:
+ b['tags'] += komma + tag
+ komma = ', '
else:
b[k] = bug[k]
if bug['status'] == 'done':
--
Static and dynamic websites for Debian Pure Blends
More information about the Blends-commit
mailing list