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,9 +147,10 @@ class Plugin(callbacks.Plugin):
hasAuthor = False
hasContribs = False
if getattr(module, '__author__', None):
author = 'was written by %s' % \
utils.web.mungeEmail(str(module.__author__))
hasAuthor = True
if module.__author__ != supybot.authors.unknown:
author = 'was written by %s' % \
utils.web.mungeEmail(str(module.__author__))
hasAuthor = True
if getattr(module, '__contributors__', None):
contribs = sortAuthors()
if hasAuthor: