mirror of
https://github.com/Klipper3d/klipper.git
synced 2025-07-07 15:07:33 -06:00
graphstats: Make check for stats prefixes more robust
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
This commit is contained in:
parent
3e1febce78
commit
bf301a977e
2 changed files with 2 additions and 2 deletions
|
@ -34,7 +34,7 @@ def parse_log(logname, mcu):
|
|||
prefix = ""
|
||||
keyparts = {}
|
||||
for p in parts[2:]:
|
||||
if p.endswith(':'):
|
||||
if '=' not in p:
|
||||
prefix = p
|
||||
if prefix == mcu_prefix:
|
||||
prefix = ''
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue