We need to str() module.__author__ before munging the email address.

This commit is contained in:
James Vega 2004-10-05 01:32:43 +00:00
parent a8190dc5da
commit e69f086b51
1 changed files with 1 additions and 1 deletions

View File

@ -395,7 +395,7 @@ class Misc(callbacks.Privmsg):
return
module = sys.modules[cb.__class__.__module__]
if hasattr(module, '__author__') and module.__author__:
irc.reply(utils.mungeEmailForWeb(module.__author__))
irc.reply(utils.mungeEmailForWeb(str(module.__author__)))
else:
irc.reply('That plugin doesn\'t have an author that claims it.')
author = wrap(author, [('plugin', False)])