From 139ea90d85595777e8aa73b930c9b977771595e8 Mon Sep 17 00:00:00 2001 From: Andrea Arteaga Date: Tue, 4 Sep 2012 14:08:56 +0200 Subject: Solve bug with void result. --- numbench/report.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/numbench/report.py b/numbench/report.py index f325eb0..6a0f584 100644 --- a/numbench/report.py +++ b/numbench/report.py @@ -92,7 +92,7 @@ def saveReport(): for tid, test in cfg.tests.items(): - longlabel = len(test.get('implementations')) > 1 + longlabel = len(test.get('implementations', [])) > 1 for impl in test.get('implementations', []): # Add line to the plot -- cgit v1.2.3-65-gdbad