AppVeyor IRC notifications: remove unnecessary delay

I added that delay just to be sure. Now when the notifications are working,
I try removing it.
This commit is contained in:
Jyrki Vesterinen 2016-12-02 06:07:16 +02:00
parent e754bad894
commit 3d2bbf94b1

View File

@ -160,7 +160,6 @@ if __name__ == '__main__':
for msg in messages:
print('PRIVMSG #{} :{}'.format(channel, msg))
irc_sock.send('PRIVMSG #{} :{}\r\n'.format(channel, msg).encode())
time.sleep(5)
# leave the channel
irc_sock.send('PART #{}\r\n'.format(channel).encode())
sys.exit()