diff options
author | Dan McGee <dan@archlinux.org> | 2009-09-26 09:32:02 -0500 |
---|---|---|
committer | Dan McGee <dan@archlinux.org> | 2009-09-26 09:32:02 -0500 |
commit | bb12a5d27b80dd2b77773c4e8a0cd7373e5fac61 (patch) | |
tree | 376da5a1f5a2f3cbeef4d8111fe605e2ed4d2492 /scripts/reporead.py | |
parent | c95e5d40534012ce20efcf360d650775177378e9 (diff) |
reporead: join multivalue attributes with ', '
Fixes FS#14270.
Signed-off-by: Dan McGee <dan@archlinux.org>
Diffstat (limited to 'scripts/reporead.py')
-rwxr-xr-x | scripts/reporead.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/reporead.py b/scripts/reporead.py index df0062f9..361d0dbb 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: |