diff options
Diffstat (limited to 'pyload/PluginManager.py')
-rw-r--r-- | pyload/PluginManager.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/pyload/PluginManager.py b/pyload/PluginManager.py index b6e4ed977..ea0515999 100644 --- a/pyload/PluginManager.py +++ b/pyload/PluginManager.py @@ -208,6 +208,8 @@ class PluginManager: if name not in sys.modules: #could be already in modules # TODO: only temporary + # TODO: strange side effects are caused by this workaround + # e.g a class instance is not associated correctly with its on instance because of wrong module names if name.endswith("module"): # name = "pyload." name = name.replace(".module", "") |