Update __init__.py

This commit is contained in:
Swee 2024-10-19 20:55:22 -07:00
parent 8549970c79
commit 1145c0402b

View file

@ -51,7 +51,7 @@ class IRCSession: # Actual IRC session
return False
def get(self): # Attempt to get the raw data and parse it.
# The code is copied from sweeBotIRC btw
r = self.socket.recv().recv(2040).decode()
r = self.socket.recv(2040).decode()
self.raw_text += r
self.parseall()
print(r)