Skip to content

Commit

Permalink
Fix --no-gui PySide dependency issue on non-Windows OS (#653)
Browse files Browse the repository at this point in the history
  • Loading branch information
Et0h authored Jan 2, 2024
1 parent b8de12f commit 2dd3875
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion syncplay/ui/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
if not isWindowsConsole():
try:
from syncplay.ui.gui import MainWindow as GraphicalUI
except ImportError:
except (ImportError, AttributeError) as e:
pass
from syncplay.ui.consoleUI import ConsoleUI

Expand Down

0 comments on commit 2dd3875

Please sign in to comment.