diff options
author | Andrea Arteaga <andyspiros@gmail.com> | 2012-09-04 14:08:56 +0200 |
---|---|---|
committer | Andrea Arteaga <andyspiros@gmail.com> | 2012-09-04 14:08:56 +0200 |
commit | 139ea90d85595777e8aa73b930c9b977771595e8 (patch) | |
tree | 49a9c76c3569c070b1207cf785a8d3d194462cbd | |
parent | Removed useless print in report. (diff) | |
download | auto-numerical-bench-139ea90d85595777e8aa73b930c9b977771595e8.tar.gz auto-numerical-bench-139ea90d85595777e8aa73b930c9b977771595e8.tar.bz2 auto-numerical-bench-139ea90d85595777e8aa73b930c9b977771595e8.zip |
Solve bug with void result.
-rw-r--r-- | numbench/report.py | 2 |
1 files changed, 1 insertions, 1 deletions
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 |