diff options
author | Doug Zongker <dougz@android.com> | 2009-12-03 16:36:20 -0800 |
---|---|---|
committer | Doug Zongker <dougz@android.com> | 2009-12-03 16:36:20 -0800 |
commit | 5ecba70ce5302c34996bc70a0f8dc9ee6cbb2dea (patch) | |
tree | a66fb26ff5f525c40b44dce6305cd6a698e2cbf9 /tools/releasetools/common.py | |
parent | 8bec09ee7264160e4e08973a0efcc6bd2c898925 (diff) | |
download | build-5ecba70ce5302c34996bc70a0f8dc9ee6cbb2dea.zip build-5ecba70ce5302c34996bc70a0f8dc9ee6cbb2dea.tar.gz build-5ecba70ce5302c34996bc70a0f8dc9ee6cbb2dea.tar.bz2 |
add missing comma
A missing comma is breaking the option parsing for the signing tools
(this doesn't affect any device code, only the signing tools).
Diffstat (limited to 'tools/releasetools/common.py')
-rw-r--r-- | tools/releasetools/common.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/releasetools/common.py b/tools/releasetools/common.py index 041daf4..26f216d 100644 --- a/tools/releasetools/common.py +++ b/tools/releasetools/common.py @@ -308,7 +308,7 @@ def ParseOptions(argv, OPTIONS.search_path = a elif o in ("-s", "--device_specific"): OPTIONS.device_specific = a - elif o in ("-x" "--extra"): + elif o in ("-x", "--extra"): key, value = a.split("=", 1) OPTIONS.extras[key] = value else: |