From a1ae3eb42a0648e1875d9137c056d76e2d26d857 Mon Sep 17 00:00:00 2001 From: Ben Harris Date: Fri, 13 Mar 2020 10:09:19 -0400 Subject: fix JOIN command --- tooter.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tooter.py b/tooter.py index 2910435..c505836 100644 --- a/tooter.py +++ b/tooter.py @@ -111,7 +111,7 @@ if __name__ == "__main__": ], ) ) - _send(irctokens.format("JOIN", channels)) + _send(irctokens.format("JOIN", [",".join(channels)])) elif line.command == "INVITE": _send(irctokens.format("JOIN", line.params)) -- cgit 1.4.1