ConfigurablePluginManager discards callback on loadPlugins
A fat-free DIY Python plugin management toolkit.
Brought to you by:
tibonihoo
When a configurable plugin manager's loadPlugins function is called with a "callback" argument, this argument is discarded rather than being passed to self._component.
Possible fix:
in ConfigurablPluginManager.py line 258:
self._component.loadPlugins()
replace with:
self._component.loadPlugins(callback=callback)
Anonymous
thanks for reporting that's another nasty one.
I've commited your proposed fix.
Fixed in v1.10.323