From e3cf8fc819c808a8e300d0b11ed74aefc00f5fb5 Mon Sep 17 00:00:00 2001 From: Kevin O'Connor Date: Mon, 16 Aug 2021 22:23:18 -0400 Subject: [PATCH] motion_report: Fix typo causing incomplete queries Signed-off-by: Kevin O'Connor --- klippy/extras/motion_report.py | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/klippy/extras/motion_report.py b/klippy/extras/motion_report.py index 7b615251..ce7486e4 100644 --- a/klippy/extras/motion_report.py +++ b/klippy/extras/motion_report.py @@ -23,8 +23,7 @@ class DumpStepper: break end_clock = data[count-1].first_clock res.reverse() - return ([data[i] for i in range(count-1, -1, -1) - for data, count in res], res) + return ([d[i] for d, cnt in res for i in range(cnt-1, -1, -1)], res) def log_steps(self, data): if not data: return @@ -60,8 +59,7 @@ class DumpTrapQ: break end_time = data[count-1].print_time res.reverse() - return ([data[i] for i in range(count-1, -1, -1) - for data, count in res], res) + return ([d[i] for d, cnt in res for i in range(cnt-1, -1, -1)], res) def log_trapq(self, data): if not data: return