From 853177f0369353722d5d503b8625cda4766006db Mon Sep 17 00:00:00 2001 From: Mattia Rizzolo Date: Thu, 4 Jun 2015 14:26:35 +0200 Subject: reproducible: setup_notify: only consider packages in main when looking for maintainers packages --- bin/reproducible_setup_notify.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'bin/reproducible_setup_notify.py') 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()] -- cgit v1.2.3-54-g00ecf