diff options
author | Mattia Rizzolo <mattia@mapreri.org> | 2015-06-04 14:26:35 +0200 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2015-06-04 14:33:47 +0200 |
commit | 853177f0369353722d5d503b8625cda4766006db (patch) | |
tree | 2a0485b1da2df704b3346f8d54ed67f2f3f2852a /bin | |
parent | 4ff8cc45ead03a718c281e3406e79dcb023e0b33 (diff) | |
download | jenkins.debian.net-853177f0369353722d5d503b8625cda4766006db.tar.xz |
reproducible: setup_notify: only consider packages in main when looking for maintainers packages
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/reproducible_setup_notify.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/reproducible_setup_notify.py b/bin/reproducible_setup_notify.py index f3fbe9f6..af00a65c 100755 --- a/bin/reproducible_setup_notify.py +++ b/bin/reproducible_setup_notify.py @@ -74,7 +74,7 @@ if maintainer: conn_udd = start_udd_connection() c = conn_udd.cursor() query = "SELECT source FROM sources WHERE maintainer_email = '{}' " + \ - "AND release = 'sid'" + "AND release = 'sid' AND component = 'main'" try: c.execute(query.format(maintainer)) pkgs = [x[0] for x in c.fetchall()] |