12416 widen exception catching for internal script error

This commit is contained in:
Arthur 2023-05-04 09:48:55 -07:00
parent 39a74727c3
commit 2cd14b4dd1

View File

@ -56,7 +56,7 @@ class ScriptModule(PythonModuleMixin, JobsMixin, ManagedFile):
module = None
try:
module = self.get_module()
except OSError as e:
except Exception as e:
pass
scripts = {}