diff options
-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 |