summaryrefslogtreecommitdiff
path: root/python/__init__.py
diff options
context:
space:
mode:
Diffstat (limited to 'python/__init__.py')
-rw-r--r--python/__init__.py11
1 files changed, 9 insertions, 2 deletions
diff --git a/python/__init__.py b/python/__init__.py
index 9e4e80c2..40415e87 100644
--- a/python/__init__.py
+++ b/python/__init__.py
@@ -402,5 +402,12 @@ def connect_vscode_debugger(port=5678):
class UIPluginInHeadlessError(Exception):
- def __init__(self, *args, **kwargs):
- Exception.__init__(self, *args, **kwargs)
+ def __init__(self, *args, **kwargs):
+ Exception.__init__(self, *args, **kwargs)
+
+
+# Load Collaboration scripts from Enterprise (they are bundled in shipping builds)
+try:
+ from . import collaboration
+except ImportError:
+ pass