aboutsummaryrefslogtreecommitdiffstats
path: root/klippy/extras/temperature_fan.py
diff options
context:
space:
mode:
Diffstat (limited to 'klippy/extras/temperature_fan.py')
-rw-r--r--klippy/extras/temperature_fan.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/klippy/extras/temperature_fan.py b/klippy/extras/temperature_fan.py
index b6f4e47f..6cdd8f8f 100644
--- a/klippy/extras/temperature_fan.py
+++ b/klippy/extras/temperature_fan.py
@@ -12,7 +12,7 @@ PID_PARAM_BASE = 255.
class TemperatureFan:
def __init__(self, config):
- self.name = config.get_name()
+ self.name = config.get_name().split()[1]
self.printer = config.get_printer()
self.fan = fan.PrinterFan(config, default_shutdown_speed=1.)
self.mcu = self.fan.mcu_fan.get_mcu()