diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2019-12-04 20:11:54 -0500 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2019-12-04 20:11:54 -0500 |
commit | 72161d04053e168baf025957ec75008d0fd4f60f (patch) | |
tree | 00967c1e175a04501186cdbb8f854e7e9f7764aa /klippy | |
parent | 10270dc7ef45b75824c0d3addced92f6c4ac599c (diff) | |
download | kutter-72161d04053e168baf025957ec75008d0fd4f60f.tar.gz kutter-72161d04053e168baf025957ec75008d0fd4f60f.tar.xz kutter-72161d04053e168baf025957ec75008d0fd4f60f.zip |
tuning_tower: Fix typo causing tuning tower to break when homing
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
Diffstat (limited to 'klippy')
-rw-r--r-- | klippy/extras/tuning_tower.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/klippy/extras/tuning_tower.py b/klippy/extras/tuning_tower.py index e892622d..29237fe1 100644 --- a/klippy/extras/tuning_tower.py +++ b/klippy/extras/tuning_tower.py @@ -38,7 +38,7 @@ class TuningTower: % (self.start, self.factor)) def get_position(self): pos = self.normal_transform.get_position() - self.last_postition = list(pos) + self.last_position = list(pos) return pos def calc_value(self, z): if self.band: |