Skip to content
Snippets Groups Projects
Commit fa2fa9ad authored by pcherenkov's avatar pcherenkov
Browse files

bug741767: python 2.6 is allowed

parent 9fe42da1
No related merge requests found
......@@ -2,7 +2,7 @@
/usr/bin/env python <<__EOB__
import sys
if sys.hexversion < 0x02070000 or sys.hexversion >= 0x03000000:
if sys.hexversion < 0x02060000 or sys.hexversion >= 0x03000000:
sys.stderr.write("ERROR: test harness must use python >= 2.6 but not 3.x\n")
sys.exit(1)
else:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment