aboutsummaryrefslogtreecommitdiffstats
path: root/klippy/configfile.py
diff options
context:
space:
mode:
Diffstat (limited to 'klippy/configfile.py')
-rw-r--r--klippy/configfile.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/klippy/configfile.py b/klippy/configfile.py
index 55aed295..518b574b 100644
--- a/klippy/configfile.py
+++ b/klippy/configfile.py
@@ -255,8 +255,9 @@ class PrinterConfig:
self._parse_config_buffer(buffer, filename, fileconfig)
visited.remove(path)
def _build_config_wrapper(self, data, filename):
+ cp = (';', '#')
fileconfig = configparser.RawConfigParser(
- strict=False, inline_comment_prefixes=(';','#'))
+ strict=False, comment_prefixes=cp, inline_comment_prefixes=cp)
self._parse_config(data, filename, fileconfig, set())
return ConfigWrapper(self.printer, fileconfig, {}, 'printer')
def _build_config_string(self, config):