diff options
Diffstat (limited to 'scripts/graphstats.py')
-rwxr-xr-x | scripts/graphstats.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/graphstats.py b/scripts/graphstats.py index 452cff72..26e6c606 100755 --- a/scripts/graphstats.py +++ b/scripts/graphstats.py @@ -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 = '' |