The following commit has been merged in the master branch:
commit 219414799a855d60217a220bcc61c627d13ef9e3
Author: Andreas Tille <[email protected]>
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

_______________________________________________
Blends-commit mailing list
[email protected]
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/blends-commit

Reply via email to