summaryrefslogtreecommitdiff
path: root/multiarchanalyze.py
diff options
context:
space:
mode:
authorHelmut Grohne <helmut@subdivi.de>2020-09-06 13:04:35 +0200
committerHelmut Grohne <helmut@subdivi.de>2020-09-06 13:04:35 +0200
commit245b18af76bebcda38e49f0186e7e586599f9c1d (patch)
tree865e1884952164562aee1cac55ed9d68d0d04343 /multiarchanalyze.py
parente6115dd16b4670541e06e9eeb1377033d870dccb (diff)
downloaddebian-dedup-245b18af76bebcda38e49f0186e7e586599f9c1d.tar.gz
fix tuple mismatch
Fixes: e6115dd16b46 ("hide M-A:same conflicts in binNMUed packages")
Diffstat (limited to 'multiarchanalyze.py')
-rwxr-xr-xmultiarchanalyze.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/multiarchanalyze.py b/multiarchanalyze.py
index a238dd4..132ffc6 100755
--- a/multiarchanalyze.py
+++ b/multiarchanalyze.py
@@ -95,7 +95,7 @@ def main():
cur = db.cursor()
# Ignore conflicts in binNMUs as buildds don't pass --binNMU-timestamp to
# sbuild yet. See #843773.
- cur.execute("SELECT name, version, architecture1, architecture2, filename FROM masame_conflict WHERE version NOT LIKE '%+b%';")
+ cur.execute("SELECT name, architecture1, architecture2, filename FROM masame_conflict WHERE version NOT LIKE '%+b%';")
same_conflicts = {}
for package, arch1, arch2, filename in fetchiter(cur):
if filename.startswith("./"):