Fix weird double indentation in IRCBot.py

This commit is contained in:
jesopo 2018-09-11 18:25:01 +01:00
parent 614f63bda3
commit 788ba239e5

View file

@ -179,8 +179,8 @@ class Bot(object):
print("pingout from %s" % str(server)) print("pingout from %s" % str(server))
server.disconnect() server.disconnect()
elif server.ping_due() and not server.ping_sent: elif server.ping_due() and not server.ping_sent:
server.send_ping() server.send_ping()
server.ping_sent = True server.ping_sent = True
if not server.connected: if not server.connected:
self.disconnect(server) self.disconnect(server)