diff options
-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: |