aboutsummaryrefslogtreecommitdiffstats
path: root/klippy/extras
diff options
context:
space:
mode:
authorKevin O'Connor <kevin@koconnor.net>2021-09-26 12:21:36 -0400
committerKevin O'Connor <kevin@koconnor.net>2021-09-26 12:21:36 -0400
commit1eecd412ef1bbf36d838987efed9391c02e08638 (patch)
tree691625f2a42685b0c3fb8aa432ed676ec436e608 /klippy/extras
parent42f7845bd97baddf122ebed2c3de4ba1eb70ac77 (diff)
downloadkutter-1eecd412ef1bbf36d838987efed9391c02e08638.tar.gz
kutter-1eecd412ef1bbf36d838987efed9391c02e08638.tar.xz
kutter-1eecd412ef1bbf36d838987efed9391c02e08638.zip
motion_report: Fix typo causing error reports to not propagate
The APIDumpHelper._start() method should propagate errors to its caller. Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
Diffstat (limited to 'klippy/extras')
-rw-r--r--klippy/extras/motion_report.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/klippy/extras/motion_report.py b/klippy/extras/motion_report.py
index 575ff588..10cf3583 100644
--- a/klippy/extras/motion_report.py
+++ b/klippy/extras/motion_report.py
@@ -40,7 +40,7 @@ class APIDumpHelper:
except self.printer.command_error as e:
logging.exception("API Dump Helper start callback error")
self._stop()
- return
+ raise
reactor = self.printer.get_reactor()
systime = reactor.monotonic()
waketime = systime + self.update_interval