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 4850a53..3f5b610 100644 --- a/lib/utils.py +++ b/lib/utils.py @@ -150,7 +150,7 @@ def parse_conf_str(conf_str): """ conf_dict = dict() for option in conf_str.split(","): - key, value = option.split("=") + key, value = option.strip().split("=") conf_dict[key] = soft_cast_float(value) return conf_dict |