diff options
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/test/appveyor-irc-notify.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/test/appveyor-irc-notify.py b/scripts/test/appveyor-irc-notify.py index 44ef4c96fc..4ffea52684 100644 --- a/scripts/test/appveyor-irc-notify.py +++ b/scripts/test/appveyor-irc-notify.py @@ -169,7 +169,7 @@ def notify(): response = line.split() if response[0] == 'PING': - irc_file.send('PONG {}\r\n'.format(reponse[1]).encode()) + irc_file.send('PONG {}\r\n'.format(response[1]).encode()) elif response[1] == '433': irc_sock.send('NICK {}\r\n'.format(irc_nick).encode()) |