diff options
author | Daniel Friesel <daniel.friesel@uos.de> | 2019-05-08 16:41:59 +0200 |
---|---|---|
committer | Daniel Friesel <daniel.friesel@uos.de> | 2019-05-08 16:41:59 +0200 |
commit | 3205e3149914c8421f1179f3538f331267902244 (patch) | |
tree | ea1987665c72a10a96303c40e95187b94bdf597d /lib/utils.py | |
parent | 62919d668c475a9191ff9cc8c4016a3baee1667c (diff) |
conf str: use foo=foo=bar,quux=lol instead of foo=foo:bar,quux:lol
Diffstat (limited to 'lib/utils.py')
-rw-r--r-- | lib/utils.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/utils.py b/lib/utils.py index 02c1d26..b06e2eb 100644 --- a/lib/utils.py +++ b/lib/utils.py @@ -57,7 +57,7 @@ def flatten(somelist): def parse_conf_str(conf_str): conf_dict = dict() for option in conf_str.split(','): - key, value = option.split(':') + key, value = option.split('=') conf_dict[key] = soft_cast_int(value) return conf_dict |