diff options
Diffstat (limited to 'backend/main.py')
| -rw-r--r-- | backend/main.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/backend/main.py b/backend/main.py index cd73ce26..c144c13a 100644 --- a/backend/main.py +++ b/backend/main.py @@ -124,7 +124,7 @@ class PluginManager: while not tab: try: tab = await get_gamepadui_tab() - except client_exceptions.ClientConnectorError or client_exceptions.ServerDisconnectedError: + except (client_exceptions.ClientConnectorError, client_exceptions.ServerDisconnectedError): if not dc: logger.debug("Couldn't connect to debugger, waiting...") dc = True |
