diff options
Diffstat (limited to 'klippy/gcode.py')
-rw-r--r-- | klippy/gcode.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/klippy/gcode.py b/klippy/gcode.py index 5262676a..88797077 100644 --- a/klippy/gcode.py +++ b/klippy/gcode.py @@ -151,6 +151,9 @@ class GCodeParser: def busy_handler(self, eventtime): try: busy = self.busy_state.check_busy(eventtime) + except homing.EndstopError, e: + self.respond("Error: %s" % (e,)) + busy = False except: logging.exception("Exception in busy handler") self.toolhead.force_shutdown() |