Update config
Some checks failed
Python application / build (push) Has been cancelled

This commit is contained in:
Bjoern Kerler 2025-07-18 11:56:41 +02:00
parent 8eed8ce5f3
commit 0b4ba93263
No known key found for this signature in database
GPG key ID: A3E0FAF79F2F4578

View file

@ -22,10 +22,12 @@ sys.path.insert(0, current_dir)
try:
from edlclient.Tools.qc_diag import qcdiag
except ImportError as e:
print(current_dir)
from qc_diag import qcdiag
pass
script_path = os.path.dirname(os.path.dirname(os.path.dirname(os.path.realpath(__file__))))
sys.path.insert(0, script_path)
try:
from edlclient.Tools.qc_diag import qcdiag
except ImportError as e:
print("ImportError: %s" % e)
try:
from edlclient.Library.utils import LogBase