mirror of https://github.com/Desuuuu/klipper.git
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
|
@ -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 = ''
|
||||
|
|
|
@ -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…
Reference in New Issue