Skip to content

Commit

Permalink
declare error as error
Browse files Browse the repository at this point in the history
  • Loading branch information
Berserker66 committed Jun 5, 2024
1 parent 5c57551 commit 539a4e5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion worlds/LauncherComponents.py
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ def install_apworld(apworld_path: str = ""):
source, target = _install_apworld(apworld_path)
except Exception as e:
import Utils
Utils.messagebox(e.__class__.__name__, str(e))
Utils.messagebox(e.__class__.__name__, str(e), error=True)
logging.exception(e)
else:
import Utils
Expand Down

0 comments on commit 539a4e5

Please sign in to comment.