Skip to content

Commit

Permalink
Fix Windows no stderr error
Browse files Browse the repository at this point in the history
  • Loading branch information
chidiwilliams committed Apr 30, 2023
1 parent da1b7b0 commit 6528bbc
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions main.py
Expand Up @@ -8,8 +8,6 @@

from appdirs import user_log_dir

from buzz.cli import parse_command_line

# Check for segfaults if not running in frozen mode
if getattr(sys, 'frozen', False) is False:
faulthandler.enable()
Expand Down Expand Up @@ -50,6 +48,7 @@
logging.getLogger().addHandler(stdout_handler)

from buzz.gui import Application
from buzz.cli import parse_command_line

app = Application()
parse_command_line(app)
Expand Down

0 comments on commit 6528bbc

Please sign in to comment.