Skip to content

Commit

Permalink
correct version check
Browse files Browse the repository at this point in the history
  • Loading branch information
stolarczyk committed Oct 15, 2019
1 parent e480f1f commit fb38195
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ubiquerg/collection.py
Expand Up @@ -78,7 +78,7 @@ def _asciify_list(lst):
ret.append(item)
return ret

if sys.version_info[0] <= 3:
if sys.version_info[0] >= 3:
warn("This operation is supported only in Python2", UserWarning)
return data

Expand Down

0 comments on commit fb38195

Please sign in to comment.