diff --git a/utils/appveyor/irc-notify.py b/utils/appveyor/irc-notify.py index c629cb57a90f..417aaa383539 100644 --- a/utils/appveyor/irc-notify.py +++ b/utils/appveyor/irc-notify.py @@ -152,8 +152,8 @@ def appveyor_vars(): irc_sock.send('JOIN #{}\r\n'.format(channel).encode()) # send messages for msg in messages: - print('NOTICE #{} :{}'.format(channel, msg)) - irc_sock.send('NOTICE #{} :{}\r\n'.format(channel, msg).encode()) + 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())