diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2020-08-23 13:18:30 -0400 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2020-08-23 13:18:30 -0400 |
commit | 6763210558c84eeb4a58dc89dfcfee3f7fe80620 (patch) | |
tree | b8f6621ea7333f4ada0e684301aef2c33aed7e1c /klippy | |
parent | 37bbf161f8327b0c90d7164e78e2144d4404dbae (diff) | |
download | kutter-6763210558c84eeb4a58dc89dfcfee3f7fe80620.tar.gz kutter-6763210558c84eeb4a58dc89dfcfee3f7fe80620.tar.xz kutter-6763210558c84eeb4a58dc89dfcfee3f7fe80620.zip |
gcode: Fix out-of-order cmd_M112 reference
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
Diffstat (limited to 'klippy')
-rw-r--r-- | klippy/gcode.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/klippy/gcode.py b/klippy/gcode.py index d2ce232f..e15301f9 100644 --- a/klippy/gcode.py +++ b/klippy/gcode.py @@ -395,7 +395,7 @@ class GCodeIO: # Check for M112 out-of-order for line in lines: if self.m112_r.match(line) is not None: - self.cmd_M112(None) + self.gcode.cmd_M112(None) if self.is_processing_data: if len(pending_commands) >= 20: # Stop reading input |