summaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
authorDan McGee <dan@archlinux.org>2009-09-26 16:32:02 +0200
committerDan McGee <dan@archlinux.org>2009-09-26 16:32:02 +0200
commitbb12a5d27b80dd2b77773c4e8a0cd7373e5fac61 (patch)
tree376da5a1f5a2f3cbeef4d8111fe605e2ed4d2492 /scripts
parentc95e5d40534012ce20efcf360d650775177378e9 (diff)
downloadarchweb-bb12a5d27b80dd2b77773c4e8a0cd7373e5fac61.tar.gz
archweb-bb12a5d27b80dd2b77773c4e8a0cd7373e5fac61.tar.xz
reporead: join multivalue attributes with ', '
Fixes FS#14270. Signed-off-by: Dan McGee <dan@archlinux.org>
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/reporead.py2
1 files changed, 1 insertions, 1 deletions
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: