diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2018-05-14 12:31:28 -0400 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2018-05-14 12:31:28 -0400 |
commit | 907cfb91053acdd6f751e7a03134295b29360a0f (patch) | |
tree | 9c66518b36ba7f2831e44887eb64da9533f33cc5 /klippy/stepper.py | |
parent | 6c3db80d89f32bd399f4cd757aa4671d7b3b5da1 (diff) | |
download | kutter-907cfb91053acdd6f751e7a03134295b29360a0f.tar.gz kutter-907cfb91053acdd6f751e7a03134295b29360a0f.tar.xz kutter-907cfb91053acdd6f751e7a03134295b29360a0f.zip |
stepper: Fix typo in error report - name should be self.name
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
Diffstat (limited to 'klippy/stepper.py')
-rw-r--r-- | klippy/stepper.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/klippy/stepper.py b/klippy/stepper.py index cd852f05..2bad5e8a 100644 --- a/klippy/stepper.py +++ b/klippy/stepper.py @@ -136,7 +136,7 @@ class PrinterHomingStepper(PrinterStepper): endstop_accuracy / self.step_dist)) if self.homing_endstop_accuracy >= self.homing_stepper_phases // 2: logging.info("Endstop for %s is not accurate enough for stepper" - " phase adjustment", name) + " phase adjustment", self.name) self.homing_stepper_phases = None if self.mcu_endstop.get_mcu().is_fileoutput(): self.homing_endstop_accuracy = self.homing_stepper_phases |