From bb12a5d27b80dd2b77773c4e8a0cd7373e5fac61 Mon Sep 17 00:00:00 2001 From: Dan McGee Date: Sat, 26 Sep 2009 09:32:02 -0500 Subject: reporead: join multivalue attributes with ', ' Fixes FS#14270. Signed-off-by: Dan McGee --- scripts/reporead.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'scripts') diff --git a/scripts/reporead.py b/scripts/reporead.py index df0062f..361d0db 100755 --- a/scripts/reporead.py +++ b/scripts/reporead.py @@ -92,7 +92,7 @@ class Pkg(object): if x in squash: if len(val[x]) == 0: logger.warning("Package %s has no %s" % (selfdict['name'],x)) - selfdict[x] = ''.join(val[x]) + selfdict[x] = ', '.join(val[x]) # make sure we don't have elements larger than the db char # fields if len(selfdict[x]) > 255: -- cgit v1.2.3-24-g4f1b