From 5ecba70ce5302c34996bc70a0f8dc9ee6cbb2dea Mon Sep 17 00:00:00 2001 From: Doug Zongker Date: Thu, 3 Dec 2009 16:36:20 -0800 Subject: [PATCH] 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). --- tools/releasetools/common.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/releasetools/common.py b/tools/releasetools/common.py index 041daf440..26f216db1 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: