From 544d5de023c98488f44f6fc3cf50b26fcc89fa96 Mon Sep 17 00:00:00 2001 From: jesopo Date: Sun, 7 Jun 2020 20:31:07 +0100 Subject: [PATCH] again, ERR_NOSUCHUSER -> ERR_NOSUCHNICK --- ircrobots/server.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ircrobots/server.py b/ircrobots/server.py index 988e80c..482361a 100644 --- a/ircrobots/server.py +++ b/ircrobots/server.py @@ -460,7 +460,7 @@ class Server(IServer): RPL_WHOISSECURE, RPL_ENDOFWHOIS ], params)) - if line.command == ERR_NOSUCHUSER: + if line.command == ERR_NOSUCHNICK: return None elif line.command == RPL_WHOISUSER: nick, user, host, _, real = line.params[1:]