summaryrefslogtreecommitdiffstats
path: root/scripts/reporead.py
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/reporead.py')
-rwxr-xr-xscripts/reporead.py7
1 files changed, 1 insertions, 6 deletions
diff --git a/scripts/reporead.py b/scripts/reporead.py
index 5d0ff26..c346afa 100755
--- a/scripts/reporead.py
+++ b/scripts/reporead.py
@@ -236,12 +236,7 @@ def db_update(archname, pkgs):
for p in [x for x in pkgs if x.name in in_sync_not_db]:
logger.info("Adding package %s", p.name)
- ## note: maintainer is being set to orphan for now
- ## maybe later we can add logic to match pkgbuild maintainers
- ## to db maintainer ids
- pkg = Package(
- pkgname = p.name, arch = architecture, repo = repository,
- maintainer_id = 0)
+ pkg = Package(pkgname = p.name, arch = architecture, repo = repository)
populate_pkg(pkg, p, timestamp=now)
# packages in database and not in syncdb (remove from database)