From 1fe3a5423b44c9a7d3ca7b8b111289b77e87b8f0 Mon Sep 17 00:00:00 2001 From: Jeremy Fincher Date: Wed, 13 Oct 2004 22:28:47 +0000 Subject: [PATCH] Hopefully recursive aliases will be subject to supybot.commands.nested.maximum now. --- plugins/Alias.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/plugins/Alias.py b/plugins/Alias.py index a707049f4..d480f1c43 100644 --- a/plugins/Alias.py +++ b/plugins/Alias.py @@ -142,8 +142,7 @@ def makeNewAlias(name, alias): return True return False everythingReplace(tokens) - Owner = irc.getCallback('Owner') - self.Proxy(irc.irc, msg, tokens) + self.Proxy(irc, msg, tokens) doc ='\n\nAlias for <<%s>>' % \ (utils.nItems('argument', biggestDollar), alias) f = utils.changeFunctionName(f, name, doc)