summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRichard Ipsum <richard.ipsum@codethink.co.uk>2014-11-06 19:14:12 +0000
committerRichard Ipsum <richard.ipsum@codethink.co.uk>2014-11-06 19:14:12 +0000
commit2aebd07f32a5d394e1d5003e93a105c5b1b5abab (patch)
tree2db63e688a52d8657926447d49f8d646a6376916
parentc54b7eaca3f9d68ade36cf82201083947086c966 (diff)
downloadimport-2aebd07f32a5d394e1d5003e93a105c5b1b5abab.tar.gz
fix bug in get_bounds_conflict
-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 1096f9a..3e7eea6 100755
--- a/exts/pip_find_deps.py
+++ b/exts/pip_find_deps.py
@@ -97,9 +97,9 @@ class Dependency(object):
def get_bounds_conflict(self, version):
if not self._in_less_than(version):
- return ('<', str(self.less_than))
+ return ('<', self.less_than)
elif not self._in_greater_than(version):
- return ('>', str(self.greater_than))
+ return ('>', self.greater_than)
else:
return None