Fix bug #1082278, forgot parens.

This commit is contained in:
Jeremy Fincher 2004-12-10 06:15:35 +00:00
parent 9f84f150b7
commit 3679b28e57
1 changed files with 1 additions and 1 deletions

View File

@ -102,7 +102,7 @@ class Network(callbacks.Privmsg):
message. <network> 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)