From a12c4200ac12c75e9dacfed17fe2d346c596f2a3 Mon Sep 17 00:00:00 2001 From: Jeremy Fincher Date: Tue, 16 Dec 2003 13:45:37 +0000 Subject: [PATCH] Forgot a return. --- plugins/Relay.py | 1 + 1 file changed, 1 insertion(+) diff --git a/plugins/Relay.py b/plugins/Relay.py index df1d476c2..e0a64778a 100644 --- a/plugins/Relay.py +++ b/plugins/Relay.py @@ -286,6 +286,7 @@ class Relay(callbacks.Privmsg, configurable.Mixin): otherIrc = self.ircs[network] except KeyError: irc.error(msg, 'I\'m not currently on %s.' % network) + return Owner = irc.getCallback('Owner') Owner.disambiguate(irc, args) self.Proxy(otherIrc, msg, args)