summaryrefslogtreecommitdiffstats
path: root/bin/reproducible_notes.py
diff options
context:
space:
mode:
authorHolger Levsen <holger@layer-acht.org>2015-09-06 18:36:11 +0200
committerHolger Levsen <holger@layer-acht.org>2015-09-06 18:36:11 +0200
commit4046fd7cac03a24026a4fec8f559fc2908ba6954 (patch)
tree68dc9ff9e761ea5ba2c11c79a7d9cd1d7fb1c3d7 /bin/reproducible_notes.py
parentf3c889b11dda779a78ec2933e08582e5612e4dd0 (diff)
downloadjenkins.debian.net-4046fd7cac03a24026a4fec8f559fc2908ba6954.tar.xz
reproducible: ignore architecture when loading notes
Diffstat (limited to 'bin/reproducible_notes.py')
-rwxr-xr-xbin/reproducible_notes.py4
1 files 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: