fix python version check

This commit is contained in:
clowwindy 2014-06-01 17:29:18 +08:00
parent 21ab52c62b
commit 77f74a0668

View file

@ -30,7 +30,7 @@ import logging
def check_python():
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'
sys.exit(1)