Commit 1cfbd52b authored by Jason Madden's avatar Jason Madden

fix unorderable type error on python 3.

parent c47c488b
......@@ -22,7 +22,7 @@ if sys.version_info < (2, 7):
print("This version of ZEO requires Python 2.7 or higher")
sys.exit(0)
if (3, 0) < sys.version_info < 3.3:
if (3, 0) < sys.version_info < (3, 3):
print("This version of ZEO requires Python 3.3 or higher")
sys.exit(0)
......
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