We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent faf9de1 commit 91cb541Copy full SHA for 91cb541
addons/source-python/packages/source-python/plugins/manager.py
@@ -63,6 +63,12 @@ def __missing__(self, plugin_name):
63
# Get the plugin's instance
64
instance = self.instance(plugin_name, self.base_import)
65
66
+ # Does the plugin have a load function?
67
+ if 'load' in instance.globals:
68
+
69
+ # Call the plugin's load function
70
+ instance.globals['load']()
71
72
# Was the file not found?
73
# We use this check because we already printed the error to console
74
except PluginFileNotFoundError:
0 commit comments