aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKevin O'Connor <kevin@koconnor.net>2024-04-27 11:10:01 -0400
committerKevin O'Connor <kevin@koconnor.net>2024-04-27 11:10:01 -0400
commit7b490f3ec1d3f0477b90c74d96f51ba1fb457a46 (patch)
tree2766165dfa95359033558c13214a8092fb200af2
parentb1eec53ff46d78fad6b41647708b452035b9fe81 (diff)
downloadkutter-7b490f3ec1d3f0477b90c74d96f51ba1fb457a46.tar.gz
kutter-7b490f3ec1d3f0477b90c74d96f51ba1fb457a46.tar.xz
kutter-7b490f3ec1d3f0477b90c74d96f51ba1fb457a46.zip
probe: Fix typo in activate/deactive error messages
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
-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