aboutsummaryrefslogtreecommitdiffstats
path: root/klippy/gcode.py
diff options
context:
space:
mode:
Diffstat (limited to 'klippy/gcode.py')
-rw-r--r--klippy/gcode.py5
1 files changed, 1 insertions, 4 deletions
diff --git a/klippy/gcode.py b/klippy/gcode.py
index b228c499..2406a67c 100644
--- a/klippy/gcode.py
+++ b/klippy/gcode.py
@@ -418,10 +418,7 @@ class GCodeParser:
self.respond_error("Heater not configured")
return
print_time = self.toolhead.get_last_move_time()
- try:
- heater.set_temp(print_time, temp)
- except heater.error as e:
- raise self.error(str(e))
+ heater.set_temp(print_time, temp)
if wait and temp:
self.bg_temp(heater)
# G-Code special command handlers