diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2018-07-22 11:47:49 -0400 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2018-07-22 11:47:49 -0400 |
commit | fce993478c2595e334f5686ff5d7f8231dcbd24a (patch) | |
tree | 0bed0dc1588367329ad9570ce1baa10fdcdc0004 /klippy/extras/delta_calibrate.py | |
parent | cb29143939c3dbe7e3c7782e274c1a7ca3631f6d (diff) | |
download | kutter-fce993478c2595e334f5686ff5d7f8231dcbd24a.tar.gz kutter-fce993478c2595e334f5686ff5d7f8231dcbd24a.tar.xz kutter-fce993478c2595e334f5686ff5d7f8231dcbd24a.zip |
delta_calibrate: Fix typo in config output (radius should be delta_radius)
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
Diffstat (limited to 'klippy/extras/delta_calibrate.py')
-rw-r--r-- | klippy/extras/delta_calibrate.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/klippy/extras/delta_calibrate.py b/klippy/extras/delta_calibrate.py index f8f87d9e..3437a6d8 100644 --- a/klippy/extras/delta_calibrate.py +++ b/klippy/extras/delta_calibrate.py @@ -56,7 +56,7 @@ class DeltaCalibrate: "stepper_a: position_endstop: %.6f angle: %.6f\n" "stepper_b: position_endstop: %.6f angle: %.6f\n" "stepper_c: position_endstop: %.6f angle: %.6f\n" - "radius: %.6f\n" + "delta_radius: %.6f\n" "To use these parameters, update the printer config file with\n" "the above and then issue a RESTART command" % ( new_params['endstop_a'], new_params['angle_a'], |