From 3d7e8f8420a9f298ac7854dec112114e7d1e8846 Mon Sep 17 00:00:00 2001 From: James Lu Date: Thu, 21 Jul 2016 19:11:57 -0700 Subject: [PATCH] clientbot: fix wrong args to _squit --- protocols/clientbot.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/protocols/clientbot.py b/protocols/clientbot.py index 959793f..231f495 100644 --- a/protocols/clientbot.py +++ b/protocols/clientbot.py @@ -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)."""