heater: Use printer.command_error() instead of internal heater.error()

Use the more standard command_error to report invalid temperature
requests.

Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
This commit is contained in:
Kevin O'Connor
2019-12-16 19:16:58 -05:00
parent 254789f4c5
commit 665323eb29
3 changed files with 6 additions and 12 deletions

View File

@@ -28,9 +28,9 @@ class PIDCalibrate:
old_control = heater.set_control(calibrate)
try:
heater.set_temp(print_time, target)
except heater.error as e:
except self.printer.command_error as e:
heater.set_control(old_control)
raise self.gcode.error(str(e))
raise
self.gcode.bg_temp(heater)
heater.set_control(old_control)
if write_file: