Potential workaround for manuskriptw.exe

Signed-off-by: TheJackiMonster <thejackimonster@gmail.com>
This commit is contained in:
TheJackiMonster 2022-08-10 00:29:49 +02:00
parent b802ae9784
commit 029dfe2056
No known key found for this signature in database
GPG Key ID: D850A5F772E880F9
1 changed files with 4 additions and 1 deletions

View File

@ -14,7 +14,10 @@ from PyQt5.QtWidgets import QApplication, qApp, QStyleFactory
from manuskript.functions import appPath, writablePath
from manuskript.version import getVersion
faulthandler.enable()
try:
faulthandler.enable()
except AttributeError:
print("Faulthandler failed")
import logging
LOGGER = logging.getLogger(__name__)