diff options
author | Piotr Usewicz <piotr@layer22.com> | 2020-04-15 04:09:28 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-04-14 22:09:28 -0400 |
commit | 939b575b012504acadd19401b31daa9b56b10578 (patch) | |
tree | 02d2cf1dcb92c922e6887dd733138619eff7a729 | |
parent | 03fb7961b444013c2dc5ec5de40d9901f4c3eb57 (diff) | |
download | kutter-939b575b012504acadd19401b31daa9b56b10578.tar.gz kutter-939b575b012504acadd19401b31daa9b56b10578.tar.xz kutter-939b575b012504acadd19401b31daa9b56b10578.zip |
bed_mesh: Fix typo (#2692)
Signed-off-by: Piotr Usewicz <piotr@layer22.com>
-rw-r--r-- | klippy/extras/bed_mesh.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/klippy/extras/bed_mesh.py b/klippy/extras/bed_mesh.py index 3d7b5b99..f6b53f96 100644 --- a/klippy/extras/bed_mesh.py +++ b/klippy/extras/bed_mesh.py @@ -339,7 +339,7 @@ class BedMeshCalibrate: # than 6 samples raise config.error( "bed_mesh: cannot exceed a probe_count of 6 when using " - "langrange interpolation. Configured Probe Count: %d, %d" % + "lagrange interpolation. Configured Probe Count: %d, %d" % (self.mesh_params['x_count'], self.mesh_params['y_count'])) elif params['algo'] == 'bicubic' and min_probe_cnt < 4: if max_probe_cnt > 6: |