diff options
author | Andrea Arteaga <andyspiros@gmail.com> | 2012-02-24 18:58:34 +0100 |
---|---|---|
committer | Andrea Arteaga <andyspiros@gmail.com> | 2012-02-24 18:58:34 +0100 |
commit | b92f48b60548d0be057bc9dbe264e00fc186227f (patch) | |
tree | 8769044701a15c9223a3b11197fee3b2dbc55d89 /numbench/htmlreport.py | |
parent | Added wildcards and regexp support for skip. Fixed a few bugs. (diff) | |
download | auto-numerical-bench-b92f48b60548d0be057bc9dbe264e00fc186227f.tar.gz auto-numerical-bench-b92f48b60548d0be057bc9dbe264e00fc186227f.tar.bz2 auto-numerical-bench-b92f48b60548d0be057bc9dbe264e00fc186227f.zip |
New Plotter class
Diffstat (limited to 'numbench/htmlreport.py')
-rw-r--r-- | numbench/htmlreport.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/numbench/htmlreport.py b/numbench/htmlreport.py index 33c19fa..0439aff 100644 --- a/numbench/htmlreport.py +++ b/numbench/htmlreport.py @@ -91,7 +91,7 @@ h1, h2, .plot, .descr, .info { def addFig(self, title, image, descr='', alt='', width=None): self.content += '<div class="fig">' self.content += '<h2>' + title + '</h2>' - if descr.strip() != '': + if descr.strip() != '': self.content += '<p class="descr">' + descr + '</p>' self.content += '<div class="plot">' self.content += '<a href="' + image + '">' |