mirror of
https://github.com/Klipper3d/klipper.git
synced 2025-07-07 23:17:37 -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
|
@ -112,7 +112,7 @@ class GatherShutdown:
|
|||
mcu = ""
|
||||
keyparts = {}
|
||||
for p in parts[2:]:
|
||||
if p.endswith(':'):
|
||||
if '=' not in p:
|
||||
mcu = p
|
||||
continue
|
||||
name, val = p.split('=', 1)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue