From 65bec68ec622994523d3aa4d01885fd5318e7a3a Mon Sep 17 00:00:00 2001 From: Jeremy Fincher Date: Fri, 20 Feb 2004 08:09:29 +0000 Subject: [PATCH] Fixed bug with aliases that fail to load. --- plugins/Alias.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/Alias.py b/plugins/Alias.py index 4d6213615..5324d894c 100644 --- a/plugins/Alias.py +++ b/plugins/Alias.py @@ -181,7 +181,7 @@ class Alias(callbacks.Privmsg): self.addAlias(irc, alias, command, locked) except Exception, e: self.log.exception('Exception when trying to add alias %s. ' - 'Removing from the Alias database.' % name) + 'Removing from the Alias database.' % alias) del self.aliases[name] del self.__class__.__call__ callbacks.Privmsg.__call__(self, irc, msg)