Skip to content
This repository has been archived by the owner on Mar 29, 2023. It is now read-only.

Commit

Permalink
Fixed Condition, to be python 3 on newer
Browse files Browse the repository at this point in the history
  • Loading branch information
glenfletcher committed May 22, 2014
1 parent 85b62e7 commit cc0ff03
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Equation/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
import sys
import re

if sys.version_info < (3,):
if sys.version_info >= (3,):
xrange = range
basestring = str

Expand Down

0 comments on commit cc0ff03

Please sign in to comment.