diff options
Diffstat (limited to 'scripts/lib')
-rw-r--r-- | scripts/lib/wic/partition.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/lib/wic/partition.py b/scripts/lib/wic/partition.py index 3da7e23e61..ca206ece02 100644 --- a/scripts/lib/wic/partition.py +++ b/scripts/lib/wic/partition.py | |||
@@ -173,7 +173,7 @@ class Partition(): | |||
173 | # Split sourceparams string of the form key1=val1[,key2=val2,...] | 173 | # Split sourceparams string of the form key1=val1[,key2=val2,...] |
174 | # into a dict. Also accepts valueless keys i.e. without = | 174 | # into a dict. Also accepts valueless keys i.e. without = |
175 | splitted = self.sourceparams.split(',') | 175 | splitted = self.sourceparams.split(',') |
176 | srcparams_dict = dict(par.split('=') for par in splitted if par) | 176 | srcparams_dict = dict(par.split('=', 1) for par in splitted if par) |
177 | 177 | ||
178 | plugin = PluginMgr.get_plugins('source')[self.source] | 178 | plugin = PluginMgr.get_plugins('source')[self.source] |
179 | plugin.do_configure_partition(self, srcparams_dict, creator, | 179 | plugin.do_configure_partition(self, srcparams_dict, creator, |