aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--klippy/klippy.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/klippy/klippy.py b/klippy/klippy.py
index 0cfd79e9..716f5067 100644
--- a/klippy/klippy.py
+++ b/klippy/klippy.py
@@ -151,10 +151,10 @@ class Printer:
self.need_dump_debug = False
toolhead = self.objects.get('toolhead')
if toolhead is None or self.mcu is None:
- return
+ return eventtime + 1.
is_active, thstats = toolhead.stats(eventtime)
if not is_active and not force_output:
- return
+ return eventtime + 1.
out = []
out.append(self.gcode.stats(eventtime))
out.append(thstats)