From cc0ff03022b2c93a019f03ce9b72213fcb6dd95a Mon Sep 17 00:00:00 2001 From: Glen Fletcher Date: Thu, 22 May 2014 13:19:37 +1000 Subject: [PATCH] Fixed Condition, to be python 3 on newer --- Equation/core.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Equation/core.py b/Equation/core.py index c6e8959..5ea2829 100644 --- a/Equation/core.py +++ b/Equation/core.py @@ -18,7 +18,7 @@ import sys import re -if sys.version_info < (3,): +if sys.version_info >= (3,): xrange = range basestring = str