From 80cbe2c3bac72cc6d62e3e9e11d8d70559aea625 Mon Sep 17 00:00:00 2001 From: Lenoch <81lennoch@gmail.com> Date: Wed, 17 Jan 2024 09:25:32 +0100 Subject: [PATCH] Update core.py Replaced `inconnect` by `incorrect` --- obswebsocket/core.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/obswebsocket/core.py b/obswebsocket/core.py index b65ee9e..3086a38 100644 --- a/obswebsocket/core.py +++ b/obswebsocket/core.py @@ -163,7 +163,7 @@ def _auth(self): message = self.ws.recv() if not message: - raise exceptions.ConnectionFailure("Empty response to Identify, password may be inconnect.") + raise exceptions.ConnectionFailure("Empty response to Identify, password may be incorrect.") LOG.debug("Got Identified message: {}".format(message)) result = json.loads(message) if result.get('op') != 2: