From d00a9bafeb0fc6df0718486ded5087b55b0bd50b Mon Sep 17 00:00:00 2001 From: mpgn Date: Mon, 2 Jan 2023 12:43:27 +0100 Subject: [PATCH] Fix RDP login Fix RDP login, major breaking change so it is also commited on the public repo --- cme/protocols/rdp.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cme/protocols/rdp.py b/cme/protocols/rdp.py index e736e4b5..ace2ac66 100644 --- a/cme/protocols/rdp.py +++ b/cme/protocols/rdp.py @@ -150,7 +150,7 @@ class rdp(connection): async def connect_rdp(self, url): connectionfactory = RDPConnectionFactory.from_url(url, self.iosettings) - self.conn = connectionfactory.create_connection_newtarget(self.hostname, self.iosettings) + self.conn = connectionfactory.create_connection_newtarget(self.host, self.iosettings) _, err = await self.conn.connect() if err is not None: raise err