summaryrefslogtreecommitdiffstats
path: root/tools/releasetools/check_target_files_signatures
diff options
context:
space:
mode:
authorDoug Zongker <dougz@android.com>2014-02-18 10:57:07 -0800
committerDoug Zongker <dougz@android.com>2014-02-18 10:57:07 -0800
commitcf6d5a90740e50e03d9f16c6fd449d90d396f924 (patch)
tree0ff146600c7b870d5357db751c7c30921030b2ef /tools/releasetools/check_target_files_signatures
parent0158f8f71c78caa0ff8c02ddc2d6698cc90214dd (diff)
downloadbuild-cf6d5a90740e50e03d9f16c6fd449d90d396f924.zip
build-cf6d5a90740e50e03d9f16c6fd449d90d396f924.tar.gz
build-cf6d5a90740e50e03d9f16c6fd449d90d396f924.tar.bz2
bump releasetools python requirement to 2.7
These scripts already use some post-2.4 features, so let's make it official: Python 2.7 is needed to run them. Change-Id: I256e9ed99b0b62abe4e22a7b1f811acb7419e88e
Diffstat (limited to 'tools/releasetools/check_target_files_signatures')
-rwxr-xr-xtools/releasetools/check_target_files_signatures4
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/releasetools/check_target_files_signatures b/tools/releasetools/check_target_files_signatures
index 45d30a6..b2f46c1 100755
--- a/tools/releasetools/check_target_files_signatures
+++ b/tools/releasetools/check_target_files_signatures
@@ -41,8 +41,8 @@ Usage: check_target_file_signatures [flags] target_files
import sys
-if sys.hexversion < 0x02040000:
- print >> sys.stderr, "Python 2.4 or newer is required."
+if sys.hexversion < 0x02070000:
+ print >> sys.stderr, "Python 2.7 or newer is required."
sys.exit(1)
import os