summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRichard Ipsum <richard.ipsum@codethink.co.uk>2014-11-07 11:05:01 +0000
committerRichard Ipsum <richard.ipsum@codethink.co.uk>2014-11-07 11:05:01 +0000
commit1cfb3f192cc9e58632decb7f0642b54a5e7395db (patch)
tree8d3957b299a60c7e48fb3ce772791f06521f3c2c
parent1265057958aeb310d22fef5d1d41405f259df5ea (diff)
downloadimport-1cfb3f192cc9e58632decb7f0642b54a5e7395db.tar.gz
fix
-rwxr-xr-xexts/pip_find_deps.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/exts/pip_find_deps.py b/exts/pip_find_deps.py
index 3e7eea6..2fe67fd 100755
--- a/exts/pip_find_deps.py
+++ b/exts/pip_find_deps.py
@@ -195,7 +195,7 @@ def resolve_version_constraints(requirements):
check_eqs(dep, version)
elif op == '!=':
dep.excludes.append(version)
- # TODO: chk_eqs needed here
+ check_eqs(dep, version)
elif op == '<':
check_lt(dep, version)
elif op == '>':