Deadline in Pype 3 - added change of pwd

Without it Deadline tries to load wrong Qt from its pwd
This commit is contained in:
Petr Kalis 2021-02-25 18:30:29 +01:00
parent 43acf53452
commit ae5163ad89

View file

@ -2,6 +2,9 @@
"""Open install dialog."""
import sys
import os
os.chdir(os.path.dirname(__file__)) # for override sys.path in Deadline
from Qt import QtWidgets
from .install_dialog import InstallDialog