summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRichard Ipsum <richard.ipsum@codethink.co.uk>2014-11-06 17:37:31 +0000
committerRichard Ipsum <richard.ipsum@codethink.co.uk>2014-11-06 17:37:31 +0000
commit0098bb90e9585307cbacb96acda89a806f1c219e (patch)
treebcef7e82a2bacc31bfb24becf50ea88fc928a8ff
parent4615aefe242f5dbb49f3f2aff2844c5c98da91ea (diff)
downloadimport-0098bb90e9585307cbacb96acda89a806f1c219e.tar.gz
fix
-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():