From 2aebd07f32a5d394e1d5003e93a105c5b1b5abab Mon Sep 17 00:00:00 2001 From: Richard Ipsum Date: Thu, 6 Nov 2014 19:14:12 +0000 Subject: fix bug in get_bounds_conflict --- exts/pip_find_deps.py | 4 ++-- 1 file 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 -- cgit v1.2.1