From 4046fd7cac03a24026a4fec8f559fc2908ba6954 Mon Sep 17 00:00:00 2001 From: Holger Levsen Date: Sun, 6 Sep 2015 18:36:11 +0200 Subject: reproducible: ignore architecture when loading notes --- bin/reproducible_notes.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bin/reproducible_notes.py b/bin/reproducible_notes.py index 80e07348..fc06821c 100755 --- a/bin/reproducible_notes.py +++ b/bin/reproducible_notes.py @@ -43,8 +43,8 @@ def load_notes(): irc_msg('The note for ' + pkg + ' does not include a version.') 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 != ""' + \ - ' AND s.architecture="amd64"' + ' WHERE s.name="{pkg}" AND r.status != ""' + #' AND s.architecture="amd64"' query = query.format(pkg=pkg) result = query_db(query) if not result: -- cgit v1.2.3-54-g00ecf