aboutsummaryrefslogtreecommitdiffstats
path: root/scripts/logextract.py
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/logextract.py')
-rwxr-xr-xscripts/logextract.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/logextract.py b/scripts/logextract.py
index 00d60c93..17584cbb 100755
--- a/scripts/logextract.py
+++ b/scripts/logextract.py
@@ -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)