From 658552715140ef0e6f3be02c900260f99615344e Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Sat, 19 Nov 2011 00:01:10 +0000 Subject: add python3 checks to avoid confusion from errors with python2. --- build_files/cmake/cmake_consistency_check.py | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'build_files/cmake/cmake_consistency_check.py') diff --git a/build_files/cmake/cmake_consistency_check.py b/build_files/cmake/cmake_consistency_check.py index be68455a113..65a9442a90d 100755 --- a/build_files/cmake/cmake_consistency_check.py +++ b/build_files/cmake/cmake_consistency_check.py @@ -22,6 +22,12 @@ # +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 -- cgit v1.2.3