diff options
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/reporead.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/reporead.py b/scripts/reporead.py index c346afa9..c0d43d1e 100755 --- a/scripts/reporead.py +++ b/scripts/reporead.py @@ -86,9 +86,9 @@ class Pkg(object): del val['name'] if 'desc' not in val: logger.warning("Package %s has no description" % selfdict['name']) - val['desc'] = '' + val['desc'] = None if 'url' not in val: - val['url'] = '' + val['url'] = None if 'license' not in val: val['license'] = [] for x in val.keys(): |