Skip to content

Commit

Permalink
Revert "AppVeyor IRC notifications: remove unnecessary delay"
Browse files Browse the repository at this point in the history
This reverts commit 3d2bbf9.

The notifications don't show up without the delay, the connection is
closed too early. Thus, I'll just restore the delay.
  • Loading branch information
jyrkive committed Dec 2, 2016
1 parent 211ade9 commit 5729d3d
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions utils/appveyor/irc-notify.py
Expand Up @@ -162,6 +162,7 @@ def appveyor_vars():
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()
Expand Down

0 comments on commit 5729d3d

Please sign in to comment.