From 5d60ece2ac3d183fe47e90a94666e86537bd524d Mon Sep 17 00:00:00 2001 From: Jeremy Fincher Date: Thu, 16 Sep 2004 14:41:40 +0000 Subject: [PATCH] Fixed a bugz0r. We should also look in test-logs/misc.log for exceptions. --- plugins/Alias.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/Alias.py b/plugins/Alias.py index 555cea67e..efac2c95f 100644 --- a/plugins/Alias.py +++ b/plugins/Alias.py @@ -182,7 +182,7 @@ class Alias(callbacks.Privmsg): def __call__(self, irc, msg): # Adding the aliases requires an Irc. So the first time we get called # with an Irc, we add our aliases and then delete ourselves :) - for (alias, (command, locked)) in self.aliases.iteritems(): + for (alias, (command, locked)) in self.aliases.items(): try: self.addAlias(irc, alias, command, locked) except Exception, e: