summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xexts/pip_find_deps.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/exts/pip_find_deps.py b/exts/pip_find_deps.py
index 88391f9..6f49018 100755
--- a/exts/pip_find_deps.py
+++ b/exts/pip_find_deps.py
@@ -128,7 +128,7 @@ def check_eqs(dep, version):
else:
warn('conflict! == %s conflicts with == %s'
% (version, dep.absolute))
- dep.conflicts.append(('==', version), ('!=', dep.absolute))
+ dep.conflicts.append((('==', version), ('!=', dep.absolute)))
elif version in dep.excludes:
warn('conflict! == %s conflicts with != %s'
% (version, version))
@@ -142,7 +142,7 @@ def check_eqs(dep, version):
# conflict
warn('conflict! == %s conflicts with > %s'
% (version, dep.greater_than))
- dep.conflicts.append(('==', version), ('>', dep.greater_than))
+ dep.conflicts.append((('==', version), ('>', dep.greater_than)))
def check_lt(dep, version):
if dep.is_unconstrained():