summaryrefslogtreecommitdiff
path: root/bpttool
diff options
context:
space:
mode:
Diffstat (limited to 'bpttool')
-rwxr-xr-xbpttool6
1 files changed, 5 insertions, 1 deletions
diff --git a/bpttool b/bpttool
index ae4bc8e..3a4b269 100755
--- a/bpttool
+++ b/bpttool
@@ -1,4 +1,4 @@
-#!/usr/bin/python
+#!/usr/bin/env python
# Copyright 2016, The Android Open Source Project
#
@@ -28,6 +28,10 @@ import sys
import uuid
import zlib
+# Python 2.6 required for modern exception syntax
+if sys.hexversion < 0x02060000:
+ print >> sys.stderr, "Python 2.6 or newer is required."
+ sys.exit(1)
# Keywords used in JSON files.
JSON_KEYWORD_SETTINGS = 'settings'