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

@ -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

@ -44,7 +44,14 @@ __all__ = (
"project_name_get"
)
import sys
if not sys.version.startswith("3"):
print("\nPython3.x needed, found %s.\nAborting!\n" %
sys.version.partition(" ")[0])
sys.exit(1)
import os
from os.path import join, dirname, normpath, abspath, splitext, exists

@ -25,6 +25,14 @@ __all__ = (
"SOURCE_DIR",
)
import sys
if not sys.version.startswith("3"):
print("\nPython3.x needed, found %s.\nAborting!\n" %
sys.version.partition(" ")[0])
sys.exit(1)
import os
from os.path import join, dirname, normpath, abspath