Fix socket bug

This commit is contained in:
zandercymatics 2023-10-19 09:07:35 -06:00
parent 6262a4cf39
commit 352a895d8d
No known key found for this signature in database
GPG key ID: FF4636ABEC9682B7

View file

@ -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"):