fix python version check
This commit is contained in:
@ -30,7 +30,7 @@ import logging
|
|||||||
|
|
||||||
def check_python():
|
def check_python():
|
||||||
info = sys.version_info
|
info = sys.version_info
|
||||||
if not (info.major == 2 and info.minor >= 6):
|
if not (info[0] == 2 and info[1] >= 6):
|
||||||
print 'Python 2.6 or 2.7 required'
|
print 'Python 2.6 or 2.7 required'
|
||||||
sys.exit(1)
|
sys.exit(1)
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user