Check for the unknown author and special case accordingly

This commit is contained in:
Kevin Murphy 2005-02-23 18:17:01 +00:00
parent 5e5e2f3336
commit 48c472d493
1 changed files with 4 additions and 3 deletions

View File

@ -147,6 +147,7 @@ class Plugin(callbacks.Plugin):
hasAuthor = False
hasContribs = False
if getattr(module, '__author__', None):
if module.__author__ != supybot.authors.unknown:
author = 'was written by %s' % \
utils.web.mungeEmail(str(module.__author__))
hasAuthor = True