Commit b4eeca72 authored by Dom Sekotill's avatar Dom Sekotill
Browse files

Fix bad syntax in previous change

parent 1e851838
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -28,5 +28,5 @@ Cross-Python compatability module.
import sys


PY2 = sys.version_info.major == 2:
PY2 = sys.version_info.major == 2
STRING_TYPES = (str, unicode) if PY2 else (str,)