diff options
author | Nick Mathewson <nickm@torproject.org> | 2018-05-30 07:57:22 -0700 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2018-05-30 07:57:22 -0700 |
commit | d7bbfd0f6217181fc7f4a4a71d23874873a5262a (patch) | |
tree | 20e20c4a180ad8be946738bbe6b45c4867cbbe32 /scripts | |
parent | aff49cc52dfabbd235505e12d507c6faf3262307 (diff) | |
download | tor-d7bbfd0f6217181fc7f4a4a71d23874873a5262a.tar.gz tor-d7bbfd0f6217181fc7f4a4a71d23874873a5262a.zip |
Fix various typos
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()) |