diff options
Diffstat (limited to 'klippy/heater.py')
-rw-r--r-- | klippy/heater.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/klippy/heater.py b/klippy/heater.py index 632ae88e..a3ca1913 100644 --- a/klippy/heater.py +++ b/klippy/heater.py @@ -194,7 +194,7 @@ class PrinterHeater: target_temp = self.target_temp last_temp = self.last_temp last_pwm_value = self.last_pwm_value - return '%s: target=%.0f temp=%.0f pwm=%.3f' % ( + return False, '%s: target=%.0f temp=%.0f pwm=%.3f' % ( self.name, target_temp, last_temp, last_pwm_value) |