No more #debg

This commit is contained in:
Juhani Krekelä 2019-05-06 14:31:19 +03:00
parent 2f33f431e2
commit 344f5314ca
1 changed files with 0 additions and 4 deletions

View File

@ -56,7 +56,6 @@ class GameLoop(threading.Thread):
def get_event(self):
event = self.chan.recv()
print(event)#debg
return event
def run(self):
@ -64,7 +63,6 @@ class GameLoop(threading.Thread):
gameloop.game(self.send, self.notice, self.get_event)
except Exception as err:
self.send('Crash! (%s, %s)' % (type(err), repr(err)))
raise err #debg
finally:
self.chan.close()
@ -288,10 +286,8 @@ def initialize(*, config):
def on_connect(*, irc):
global nickserv_pass
"""#debg
irc.msg(b'nickserv', b'IDENTIFY ' + nickserv_pass.encode())
time.sleep(20) # One day I will do this correctly. Today is not the day
"""#debg
stop_gameloop()
start_gameloop(irc)