Skip to content

Commit c595c59

Browse files
committed
load_config: do not treat ':' as delimiter
The default value of delimiters is ('=', ':') but sensors might have ':' in the name.
1 parent 73c4da1 commit c595c59

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

s_tui/s_tui.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -634,7 +634,7 @@ def _load_config(self, t_thresh):
634634
# Use user config file if one was saved before
635635
self.conf = None
636636
if user_config_file_exists():
637-
self.conf = configparser.ConfigParser()
637+
self.conf = configparser.ConfigParser(delimiters="=")
638638
self.conf.read(get_user_config_file())
639639
else:
640640
logging.debug("Config file not found")

0 commit comments

Comments
 (0)