diff options
-rwxr-xr-x | bin/reproducible_notes.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/bin/reproducible_notes.py b/bin/reproducible_notes.py index 744b8dea..872cf201 100755 --- a/bin/reproducible_notes.py +++ b/bin/reproducible_notes.py @@ -43,7 +43,8 @@ def load_notes(): raise query = 'SELECT s.id, s.version, s.suite ' + \ 'FROM results AS r JOIN sources AS s ON r.package_id=s.id' + \ - ' WHERE s.name="{pkg}" AND r.status != ""' + ' WHERE s.name="{pkg}" AND r.status != ""' + \ + ' AND s.architecture="amd64"' query = query.format(pkg=pkg) result = query_db(query) if not result: |