From dba9c402319185063ec284f7eec0eba4df2e14c3 Mon Sep 17 00:00:00 2001 From: Swee <sweeistaken@gmail.com> Date: Sun, 20 Oct 2024 10:39:33 -0700 Subject: [PATCH] Update __init__.py --- scparseirc/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scparseirc/__init__.py b/scparseirc/__init__.py index 93455d9..7c0640f 100644 --- a/scparseirc/__init__.py +++ b/scparseirc/__init__.py @@ -61,7 +61,7 @@ class IRCSession: # Actual IRC session self.wsocket.send(bytes(content,"UTF-8")) else: self.socket.send(bytes(content,"UTF-8")) - def quit(self, message:str="ScParseIRC v" + str(__version__)): # Send the server a signal that the client is about to quit, and rely on the server to close the connection. + def quit(self, message:str="ScParseIRC v"+str(__version__)): # Send the server a signal that the client is about to quit, and rely on the server to close the connection. self.send("QUIT :" + message + "\n") self.connected = False def join(self, chan):