summaryrefslogtreecommitdiff
path: root/bin/kiwi-ui-test
diff options
context:
space:
mode:
Diffstat (limited to 'bin/kiwi-ui-test')
-rwxr-xr-xbin/kiwi-ui-test12
1 files changed, 6 insertions, 6 deletions
diff --git a/bin/kiwi-ui-test b/bin/kiwi-ui-test
index 491fa9a..fcfe6dd 100755
--- a/bin/kiwi-ui-test
+++ b/bin/kiwi-ui-test
@@ -20,7 +20,7 @@ import os
import sys
# Required version of Python
-REQUIRED_VERSION = (2, 3)
+#REQUIRED_VERSION = (2, 3)
# Directory name, defaults to name of binary, it is relative to ..
# a, __init__.py and main.py is expected to be found there.
@@ -33,11 +33,11 @@ APPNAME = None
dirname = DIRNAME or os.path.split(sys.argv[0])[1]
appname = APPNAME or dirname.capitalize()
-if sys.hexversion < int('%02x%02x0000' % REQUIRED_VERSION, 16):
- raise SystemExit("ERROR: Python %s or higher is required to run %s, "
- "%s found" % ('.'.join(map(str, REQUIRED_VERSION)),
- appname,
- sys.version.split(' ', 1)[0]))
+# if sys.hexversion < int('%02x%02x0000' % REQUIRED_VERSION, 16):
+# raise SystemExit("ERROR: Python %s or higher is required to run %s, "
+# "%s found" % ('.'.join(map(str, REQUIRED_VERSION)),
+# appname,
+# sys.version.split(' ', 1)[0]))
# Figure out the directy which is the prefix
# path-of-current-file/..