aboutsummaryrefslogtreecommitdiffstats
path: root/klippy/extras/probe.py
diff options
context:
space:
mode:
Diffstat (limited to 'klippy/extras/probe.py')
-rw-r--r--klippy/extras/probe.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/klippy/extras/probe.py b/klippy/extras/probe.py
index c275d4aa..073c875c 100644
--- a/klippy/extras/probe.py
+++ b/klippy/extras/probe.py
@@ -330,14 +330,14 @@ class ProbeEndstopWrapper:
self.deactivate_gcode.run_gcode_from_command()
if toolhead.get_position()[:3] != start_pos[:3]:
raise self.printer.command_error(
- "Toolhead moved during probe activate_gcode script")
+ "Toolhead moved during probe deactivate_gcode script")
def _lower_probe(self):
toolhead = self.printer.lookup_object('toolhead')
start_pos = toolhead.get_position()
self.activate_gcode.run_gcode_from_command()
if toolhead.get_position()[:3] != start_pos[:3]:
raise self.printer.command_error(
- "Toolhead moved during probe deactivate_gcode script")
+ "Toolhead moved during probe activate_gcode script")
def multi_probe_begin(self):
if self.stow_on_each_sample:
return