diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2021-09-26 12:21:36 -0400 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2021-09-26 12:21:36 -0400 |
commit | 1eecd412ef1bbf36d838987efed9391c02e08638 (patch) | |
tree | 691625f2a42685b0c3fb8aa432ed676ec436e608 /klippy/extras/motion_report.py | |
parent | 42f7845bd97baddf122ebed2c3de4ba1eb70ac77 (diff) | |
download | kutter-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/motion_report.py')
-rw-r--r-- | klippy/extras/motion_report.py | 2 |
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 |