aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--klippy/toolhead.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/klippy/toolhead.py b/klippy/toolhead.py
index e5cda5d3..ba6319a1 100644
--- a/klippy/toolhead.py
+++ b/klippy/toolhead.py
@@ -353,7 +353,8 @@ class ToolHead:
self.dwell(STALL_TIME)
last_move_time = self.get_last_move_time()
self.kin.motor_off(last_move_time)
- self.extruder.motor_off(last_move_time)
+ for ext in extruder.get_printer_extruders(self.printer):
+ ext.motor_off(last_move_time)
self.dwell(STALL_TIME)
self.need_motor_off = False
logging.debug('; Max time of %f', last_move_time)