From 3679b28e5739abbbc6fd9a8d0764230c23c1a9f3 Mon Sep 17 00:00:00 2001 From: Jeremy Fincher Date: Fri, 10 Dec 2004 06:15:35 +0000 Subject: [PATCH] Fix bug #1082278, forgot parens. --- plugins/Network.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/Network.py b/plugins/Network.py index 627f0ff1d..2d8242910 100644 --- a/plugins/Network.py +++ b/plugins/Network.py @@ -102,7 +102,7 @@ class Network(callbacks.Privmsg): message. is only necessary if the network is different from the network the command is sent on. """ - quitMsg = quitMsg or conf.supybot.plugins.Owner.quitMsg or msg.nick + quitMsg = quitMsg or conf.supybot.plugins.Owner.quitMsg() or msg.nick otherIrc.queueMsg(ircmsgs.quit(quitMsg)) otherIrc.die() conf.supybot.networks().discard(network)