summaryrefslogtreecommitdiff
path: root/bin/kiwi-i18n
diff options
context:
space:
mode:
Diffstat (limited to 'bin/kiwi-i18n')
-rwxr-xr-xbin/kiwi-i18n12
1 files changed, 6 insertions, 6 deletions
diff --git a/bin/kiwi-i18n b/bin/kiwi-i18n
index d4d5752..ab0465d 100755
--- a/bin/kiwi-i18n
+++ b/bin/kiwi-i18n
@@ -20,7 +20,7 @@ import os
import sys
# Required version of Python
-REQUIRED_VERSION = (2, 1)
+#REQUIRED_VERSION = (2, 1)
# 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()[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()[0]))
# Figure out the directy which is the prefix
# path-of-current-file/..