Do not traceback on properties containing =

This commit is contained in:
Marco Pesenti Gritti 2006-10-19 17:09:42 +02:00
parent 4f81f305b2
commit 54941c542b

View File

@ -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