Commit 966a6c91 authored by Guillaume Seguin's avatar Guillaume Seguin

Fix typo in printcore.py

parent 1e1de326
...@@ -382,7 +382,7 @@ class printcore(): ...@@ -382,7 +382,7 @@ class printcore():
return return
if self.printing and self.queueindex < len(self.mainqueue.idxs): if self.printing and self.queueindex < len(self.mainqueue.idxs):
(layer, line) = self.mainqueue.idxs[self.queueindex] (layer, line) = self.mainqueue.idxs[self.queueindex]
gline = self.mainqueue.all_layers[layer].lines[line].raw gline = self.mainqueue.all_layers[layer].lines[line]
tline = gline.raw tline = gline.raw
#check for host command #check for host command
if tline.lstrip().startswith(";@"): if tline.lstrip().startswith(";@"):
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment