diff options
author | Timofey Titovets <nefelim4ag@gmail.com> | 2025-06-06 21:13:32 +0200 |
---|---|---|
committer | KevinOConnor <kevin@koconnor.net> | 2025-06-06 15:43:29 -0400 |
commit | 607d0b423737d0d4c46e97d5dbbc34dfb4485401 (patch) | |
tree | 9cca769da0ade279fd4cb018daa1eb1c531b56f8 | |
parent | d120a313b75a41e6d3ae1f53cda9dbd6e1d31615 (diff) | |
download | kutter-607d0b423737d0d4c46e97d5dbbc34dfb4485401.tar.gz kutter-607d0b423737d0d4c46e97d5dbbc34dfb4485401.tar.xz kutter-607d0b423737d0d4c46e97d5dbbc34dfb4485401.zip |
input_shaper: fix printer obj reference
Signed-off-by: Timofey Titovets <nefelim4ag@gmail.com>
-rw-r--r-- | klippy/extras/input_shaper.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/klippy/extras/input_shaper.py b/klippy/extras/input_shaper.py index a2117b44..67a287cd 100644 --- a/klippy/extras/input_shaper.py +++ b/klippy/extras/input_shaper.py @@ -111,7 +111,7 @@ class InputShaper: if dual_carriage is not None: for shaper in self.shapers: if shaper.is_enabled(): - raise printer.config_error( + raise self.printer.config_error( 'Input shaper parameters cannot be configured via' ' [input_shaper] section with dual_carriage(s) ' ' enabled. Refer to Klipper documentation on how ' |