From 352a895d8d3d488dd855659ae4fcbf046e65c10d Mon Sep 17 00:00:00 2001 From: zandercymatics <141044360+zandercymatics@users.noreply.github.com> Date: Thu, 19 Oct 2023 09:07:35 -0600 Subject: [PATCH] Fix socket bug --- src/epplibwrapper/client.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/epplibwrapper/client.py b/src/epplibwrapper/client.py index 6fafb2fd6..4a65e63ea 100644 --- a/src/epplibwrapper/client.py +++ b/src/epplibwrapper/client.py @@ -217,7 +217,7 @@ class EPPLibWrapper: credentials are valid, and/or if the Registrar can be contacted """ - socket = Socket(self._login, self._client) + socket = Socket(self._client, self._login) can_login = False # Something went wrong if this doesn't exist if hasattr(socket, "test_connection_success"):