From a2544ecccefcc6050be4094a20cdda54c5cb76ec Mon Sep 17 00:00:00 2001 From: Arthur de Jong Date: Sun, 21 Aug 2005 18:18:36 +0000 Subject: include short description in plugin overview page git-svn-id: http://arthurdejong.org/svn/webcheck/webcheck@150 86f53f14-5ff3-0310-afe5-9b438ce3f40c --- plugins/about.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'plugins/about.py') 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): '
  • \n' \ ' %s
    \n' \ % xml.sax.saxutils.escape(report.__title__) ) - #if hasattr(report,"__description__"): - # fp.write(' %s
    \n' % xml.sax.saxutils.escape(report.__description__)) + if hasattr(report,"__doc__"): + fp.write(' %s
    \n' % xml.sax.saxutils.escape(report.__doc__)) if hasattr(report,"__author__"): fp.write(' author: %s
    \n' % xml.sax.saxutils.escape(report.__author__)) if hasattr(report,"__version__"): -- cgit v1.2.3