add python3 checks to avoid confusion from errors with python2.

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

View File

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