Do not traceback on properties containing =
This commit is contained in:
parent
4f81f305b2
commit
54941c542b
@ -115,7 +115,7 @@ def _txt_to_dict(txt):
|
||||
key = item
|
||||
value = True
|
||||
else:
|
||||
(key, value) = item.split('=')
|
||||
(key, value) = item.split('=', 1)
|
||||
prop_dict[key] = value
|
||||
return prop_dict
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user