fix: convert exception to str

This commit is contained in:
aclist 2026-01-14 13:16:04 +09:00
parent 2ef51698bd
commit 716eaa187c

View File

@ -18,5 +18,5 @@ def is_dayz_installed(config: Path) -> None:
PeFile.get_app_path(Path(path) / LIBRARYFOLDERS_PATH, APPID_DAYZ)
except Exception as e:
logger.critical(e)
EarlyAlertDialog(e)
EarlyAlertDialog(str(e))
sys.exit(1)