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

View file

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