diff options
author | Petri Honkala <cruwaller@gmail.com> | 2019-01-08 11:22:20 +0200 |
---|---|---|
committer | KevinOConnor <kevin@koconnor.net> | 2019-01-08 08:44:25 -0500 |
commit | b2d5a8e65bfb4d5c9250a8cfb72e0b1923c8355d (patch) | |
tree | 1c491ac5501ba6d7cadc35752a0bad5c02e972e2 /klippy | |
parent | 3a4a1d678e47a54714ee56b393a7ac04ea612679 (diff) | |
download | kutter-b2d5a8e65bfb4d5c9250a8cfb72e0b1923c8355d.tar.gz kutter-b2d5a8e65bfb4d5c9250a8cfb72e0b1923c8355d.tar.xz kutter-b2d5a8e65bfb4d5c9250a8cfb72e0b1923c8355d.zip |
z_tilt: unresolved reference fixed
Signed-off-by: Petri Honkala <cruwaller@gmail.com>
Diffstat (limited to 'klippy')
-rw-r--r-- | klippy/extras/z_tilt.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/klippy/extras/z_tilt.py b/klippy/extras/z_tilt.py index 09db8bc6..4e748dd0 100644 --- a/klippy/extras/z_tilt.py +++ b/klippy/extras/z_tilt.py @@ -69,7 +69,7 @@ class ZTilt: except: logging.exception("z_tilt adjust_steppers") for s in self.z_steppers: - z.set_ignore_move(False) + s.set_ignore_move(False) raise def adjust_steppers(self, x_adjust, y_adjust, z_adjust): toolhead = self.printer.lookup_object('toolhead') |