aboutsummaryrefslogtreecommitdiffstats
path: root/klippy/configfile.py
diff options
context:
space:
mode:
Diffstat (limited to 'klippy/configfile.py')
-rw-r--r--klippy/configfile.py8
1 files changed, 8 insertions, 0 deletions
diff --git a/klippy/configfile.py b/klippy/configfile.py
index 57e61740..a7696324 100644
--- a/klippy/configfile.py
+++ b/klippy/configfile.py
@@ -150,6 +150,14 @@ class PrinterConfig:
lines[lineno] = '#' + lines[lineno]
return "\n".join(lines)
def _build_config_wrapper(self, data):
+ # Strip trailing comments from config
+ lines = data.split('\n')
+ for i, line in enumerate(lines):
+ pos = line.find('#')
+ if pos >= 0:
+ lines[i] = line[:pos]
+ data = '\n'.join(lines)
+ # Read and process config file
sfile = StringIO.StringIO(data)
fileconfig = ConfigParser.RawConfigParser()
fileconfig.readfp(sfile)