add python3 checks to avoid confusion from errors with python2.

This commit is contained in:
Campbell Barton
2011-11-19 00:01:10 +00:00
parent d88262a1bf
commit 6585527151
3 changed files with 21 additions and 0 deletions

View File

@@ -22,6 +22,12 @@
# <pep8 compliant>
import sys
if not sys.version.startswith("3"):
print("\nPython3.x needed, found %s.\nAborting!\n" %
sys.version.partition(" ")[0])
sys.exit(1)
from cmake_consistency_check_config import IGNORE, UTF8_CHECK, SOURCE_DIR
import os