Commit 60f74823 authored by Jason R. Coombs's avatar Jason R. Coombs

Correct boolean logic in fix for #69

parent 2b6a00de
......@@ -15,5 +15,5 @@ def strip_fragment(url):
url, fragment = splittag(url)
return url
if sys.version_info < (2,7):
if sys.version_info >= (2,7):
strip_fragment = lambda x: x
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment