aboutsummaryrefslogtreecommitdiff
path: root/utils
diff options
context:
space:
mode:
authorGeorgy Redkozubov <georgy.redkozubov@linaro.org>2013-06-27 11:48:32 +0400
committerGeorgy Redkozubov <georgy.redkozubov@linaro.org>2013-06-27 11:48:32 +0400
commit8a68005c47c0e585f74adfd026f9523dbd4c8d0f (patch)
treee9626033312a425a72ede9b0054cb8c54998a009 /utils
parent73aed108d6e0070d055655b5cef790c36cbcfabb (diff)
Fix split options to handle multiple split char in the same string.
Diffstat (limited to 'utils')
-rw-r--r--utils/mangle-jobs/mangle_helper.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/utils/mangle-jobs/mangle_helper.py b/utils/mangle-jobs/mangle_helper.py
index 4810873..93735a9 100644
--- a/utils/mangle-jobs/mangle_helper.py
+++ b/utils/mangle-jobs/mangle_helper.py
@@ -11,7 +11,7 @@ def get_build_config(tree):
l = l.strip()
if not l or l[0] == "#":
continue
- k, v = l.split("=")
+ k, v = l.split("=", 1)
d[k] = v
return d