From e69f086b5123fd765e2efc68e1e8d99d9dcb9cc8 Mon Sep 17 00:00:00 2001 From: James Vega Date: Tue, 5 Oct 2004 01:32:43 +0000 Subject: [PATCH] We need to str() module.__author__ before munging the email address. --- src/Misc.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Misc.py b/src/Misc.py index 724c214e8..e864e4d4f 100755 --- a/src/Misc.py +++ b/src/Misc.py @@ -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)])