3
0
mirror of https://github.com/jlu5/PyLink.git synced 2024-11-24 03:29:28 +01:00

clientbot: fix wrong args to _squit

This commit is contained in:
James Lu 2016-07-21 19:11:57 -07:00
parent c6fcdd854c
commit 3d7e8f8420

View File

@ -169,7 +169,7 @@ class ClientbotWrapperProtocol(Protocol):
"""STUB: SQUITs a server."""
# What this actually does is just handle the SQUIT internally: i.e.
# Removing pseudoclients and pseudoservers.
self._squit(source, target, text)
self._squit(source, 'CLIENTBOT_VIRTUAL_SQUIT', [target, text])
def _stub(self, *args):
"""Stub outgoing command function (does nothing)."""