diff options
author | Arthur de Jong <arthur@arthurdejong.org> | 2005-08-21 20:18:36 +0200 |
---|---|---|
committer | Arthur de Jong <arthur@arthurdejong.org> | 2005-08-21 20:18:36 +0200 |
commit | a2544ecccefcc6050be4094a20cdda54c5cb76ec (patch) | |
tree | 1bcb012e937002f3f940cb49b0828de34efd6ce6 /plugins/about.py | |
parent | 64a973b36e50ed41acbad7dbb15a41c0dfac4149 (diff) |
include short description in plugin overview page
git-svn-id: http://arthurdejong.org/svn/webcheck/webcheck@150 86f53f14-5ff3-0310-afe5-9b438ce3f40c
Diffstat (limited to 'plugins/about.py')
-rw-r--r-- | plugins/about.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/about.py b/plugins/about.py index 41f0e14..903815c 100644 --- a/plugins/about.py +++ b/plugins/about.py @@ -38,8 +38,8 @@ def generate(fp,site): ' <li>\n' \ ' <strong>%s</strong><br />\n' \ % xml.sax.saxutils.escape(report.__title__) ) - #if hasattr(report,"__description__"): - # fp.write(' %s<br />\n' % xml.sax.saxutils.escape(report.__description__)) + if hasattr(report,"__doc__"): + fp.write(' %s<br />\n' % xml.sax.saxutils.escape(report.__doc__)) if hasattr(report,"__author__"): fp.write(' author: %s<br />\n' % xml.sax.saxutils.escape(report.__author__)) if hasattr(report,"__version__"): |