Skip to content

Commit

Permalink
Fix 404
Browse files Browse the repository at this point in the history
  • Loading branch information
mrwiwi authored Nov 9, 2021
1 parent aa1c8a7 commit f6747d4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tydomConnector.py
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ async def connect(self):
websockets.client.connect returns a WebSocketClientProtocol, which is used to send and receive messages
'''
try:
self.connection = await websockets.connect('wss://{}:443/mediation/clent?mac={}&appli=1'.format(self.host, self.mac),
self.connection = await websockets.connect('wss://{}:443/mediation/client?mac={}&appli=1'.format(self.host, self.mac),
extra_headers=websocketHeaders, ssl=websocket_ssl_context, ping_timeout=None)

return self.connection
Expand Down

0 comments on commit f6747d4

Please sign in to comment.