aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xscripts/graphstats.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/graphstats.py b/scripts/graphstats.py
index 26e6c606..b018bb12 100755
--- a/scripts/graphstats.py
+++ b/scripts/graphstats.py
@@ -43,7 +43,7 @@ def parse_log(logname, mcu):
if name in apply_prefix:
name = prefix + name
keyparts[name] = val
- if keyparts.get('bytes_write', '0') == '0':
+ if 'print_time' not in keyparts:
continue
keyparts['#sampletime'] = float(parts[1][:-1])
out.append(keyparts)