aboutsummaryrefslogtreecommitdiffstats
path: root/klippy/heater.py
diff options
context:
space:
mode:
authorKevin O'Connor <kevin@koconnor.net>2016-11-23 16:18:08 -0500
committerKevin O'Connor <kevin@koconnor.net>2016-11-29 21:54:40 -0500
commitceb60ffcc62e6338077b7496682bde68cd475337 (patch)
tree806ac6d5f50e20583e3075b9e8aecfb660f26d96 /klippy/heater.py
parent72c4f353e66440896e1aaa1d4b43ca1593bc4634 (diff)
downloadkutter-ceb60ffcc62e6338077b7496682bde68cd475337.tar.gz
kutter-ceb60ffcc62e6338077b7496682bde68cd475337.tar.xz
kutter-ceb60ffcc62e6338077b7496682bde68cd475337.zip
mcu: Rename output_file_mode variable to is_fileoutput
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
Diffstat (limited to 'klippy/heater.py')
-rw-r--r--klippy/heater.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/klippy/heater.py b/klippy/heater.py
index b7987936..827ba324 100644
--- a/klippy/heater.py
+++ b/klippy/heater.py
@@ -51,7 +51,7 @@ class PrinterHeater:
control_algo = self.config.get('control', 'watermark')
algos = {'watermark': ControlBangBang, 'pid': ControlPID}
self.control = algos[control_algo](self, self.config)
- if self.printer.mcu.output_file_mode:
+ if self.printer.mcu.is_fileoutput():
self.can_extrude = True
def set_pwm(self, read_time, value):
if value: