summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRichard Ipsum <richard.ipsum@codethink.co.uk>2014-10-16 19:45:40 +0100
committerRichard Ipsum <richard.ipsum@codethink.co.uk>2014-11-04 12:40:56 +0000
commitf146309c1905d741976b368cea79f19e9607cea3 (patch)
tree23a7a18ff596f112e87c12518ce34d5b977c6b22
parent5dd6f208d0a12069cdeb59690f875d1d91ece02d (diff)
downloadimport-f146309c1905d741976b368cea79f19e9607cea3.tar.gz
Add TODO
-rwxr-xr-ximport/pip_lorry.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/import/pip_lorry.py b/import/pip_lorry.py
index 88dd6ab..9358ce2 100755
--- a/import/pip_lorry.py
+++ b/import/pip_lorry.py
@@ -118,6 +118,7 @@ def filter_urls(urls):
return filter(allowed_extension, urls)
+# TODO: find a nicer way to do this
def specs_satisfied(version, specs):
opmap = {'==' : lambda x, y: x == y, '!=' : lambda x, y: x != y,
'<=' : lambda x, y: x <= y, '>=' : lambda x, y: x >= y,