diff options
author | Tomasz Kramkowski <tomasz@kramkow.ski> | 2025-08-15 21:13:44 +0100 |
---|---|---|
committer | Tomasz Kramkowski <tomasz@kramkow.ski> | 2025-08-15 21:46:37 +0100 |
commit | ae9102482560b557628c83a247ab35063ade0bf7 (patch) | |
tree | 2f08afac5a943aac31186e2c5c0c7d60e6d8837a /klippy/extras | |
parent | 121edea90cde8295f720ed9d2f2fccca61f66bb4 (diff) | |
download | kutter-ae9102482560b557628c83a247ab35063ade0bf7.tar.gz kutter-ae9102482560b557628c83a247ab35063ade0bf7.tar.xz kutter-ae9102482560b557628c83a247ab35063ade0bf7.zip |
Rename everything significant to Kutter except for docs
Diffstat (limited to 'klippy/extras')
-rw-r--r-- | klippy/extras/axis_twist_compensation.py | 2 | ||||
-rw-r--r-- | klippy/extras/error_mcu.py | 2 | ||||
-rw-r--r-- | klippy/extras/input_shaper.py | 4 | ||||
-rw-r--r-- | klippy/extras/print_stats.py | 2 |
4 files changed, 5 insertions, 5 deletions
diff --git a/klippy/extras/axis_twist_compensation.py b/klippy/extras/axis_twist_compensation.py index 224f0a6c..ae3c9811 100644 --- a/klippy/extras/axis_twist_compensation.py +++ b/klippy/extras/axis_twist_compensation.py @@ -357,6 +357,6 @@ class Calibrater: ) -# klipper's entry point using [axis_twist_compensation] section in printer.cfg +# entry point using [axis_twist_compensation] section in printer.cfg def load_config(config): return AxisTwistCompensation(config) diff --git a/klippy/extras/error_mcu.py b/klippy/extras/error_mcu.py index 7e0610e9..43dcaa1b 100644 --- a/klippy/extras/error_mcu.py +++ b/klippy/extras/error_mcu.py @@ -135,7 +135,7 @@ class PrinterMCUError: newmsg = [ "MCU Protocol error", message_protocol_error1, - "Your Klipper version is: %s" % (host_version,), + "Your Kutter version is: %s" % (host_version,), "MCU(s) which should be updated:", ] newmsg += msg_update + ["Up-to-date MCU(s):"] + msg_updated diff --git a/klippy/extras/input_shaper.py b/klippy/extras/input_shaper.py index 11218d55..70a68fd1 100644 --- a/klippy/extras/input_shaper.py +++ b/klippy/extras/input_shaper.py @@ -146,7 +146,7 @@ class InputShaper: raise self.printer.config_error( "Input shaper parameters cannot be configured via" " [input_shaper] section with dual_carriage(s) " - " enabled. Refer to Klipper documentation on how " + " enabled. Refer to Kutter documentation on how " " to configure input shaper for dual_carriage(s)." ) return @@ -171,7 +171,7 @@ class InputShaper: def _update_kinematics(self): if self.toolhead is None: - # Klipper initialization is not yet completed + # initialization is not yet completed return ffi_main, ffi_lib = chelper.get_ffi() kin = self.toolhead.get_kinematics() diff --git a/klippy/extras/print_stats.py b/klippy/extras/print_stats.py index e7b6e97e..c9354b47 100644 --- a/klippy/extras/print_stats.py +++ b/klippy/extras/print_stats.py @@ -82,7 +82,7 @@ class PrintStats: self.print_start_time = None cmd_SET_PRINT_STATS_INFO_help = ( - "Pass slicer info like layer act and " "total to klipper" + "Pass slicer info like layer act and " "total to Kutter" ) def cmd_SET_PRINT_STATS_INFO(self, gcmd): |