catch tcl-exception

This commit is contained in:
Joachim Schöberl 2019-07-16 08:06:05 +02:00
parent e62503bdce
commit 765dc6d86a

View File

@ -19,4 +19,8 @@ def StartGUI():
pass
if not netgen.libngpy._meshing._netgen_executable_started:
StartGUI()
# catch exception for building html docu on server without display
try:
StartGUI()
except:
pass