Update __init__.py
This commit is contained in:
parent
8549970c79
commit
1145c0402b
1 changed files with 1 additions and 1 deletions
|
@ -51,7 +51,7 @@ class IRCSession: # Actual IRC session
|
||||||
return False
|
return False
|
||||||
def get(self): # Attempt to get the raw data and parse it.
|
def get(self): # Attempt to get the raw data and parse it.
|
||||||
# The code is copied from sweeBotIRC btw
|
# 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.raw_text += r
|
||||||
self.parseall()
|
self.parseall()
|
||||||
print(r)
|
print(r)
|
||||||
|
|
Loading…
Add table
Reference in a new issue