aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--scripts/plot.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/scripts/plot.py b/scripts/plot.py
index a5c61fc..c00d770 100644
--- a/scripts/plot.py
+++ b/scripts/plot.py
@@ -67,7 +67,8 @@ def parse():
def plot(records, field, scale, ylabel):
variants = unique(records, 'variant')
tests = unique(records, 'test')
- tests.remove('bounce')
+ if 'bounce' in tests:
+ tests.remove('bounce')
colours = libplot.make_colours()