diff options
author | 2015-04-13 23:39:24 +0200 | |
---|---|---|
committer | 2015-04-13 23:39:24 +0200 | |
commit | 93e8d96a612249bc5f6985740335306969b1a6d3 (patch) | |
tree | f89a3b6038344aad70a8abdd178af6af89c9a5a3 /pyload/manager/Plugin.py | |
parent | Cleanup (2) (diff) | |
download | pyload-93e8d96a612249bc5f6985740335306969b1a6d3.tar.xz |
fix: assignJob
fix: typos __name vs. __name__
Diffstat (limited to 'pyload/manager/Plugin.py')
-rw-r--r-- | pyload/manager/Plugin.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pyload/manager/Plugin.py b/pyload/manager/Plugin.py index 10abbc2ea..69a77fdf8 100644 --- a/pyload/manager/Plugin.py +++ b/pyload/manager/Plugin.py @@ -365,7 +365,7 @@ class PluginManager(object): for type in as_dict.iterkeys(): if type in ("addon", "internal"): # : do not reload them because would cause to much side effects - self.core.log.debug("Skipping reload for plugin: [%(type)s] %(name)s" % {'name': plugin, 'type': type}) + self.core.log.debug("Skipping reload for plugins from type: %(type)s" % {'type': type}) continue for plugin in as_dict[type]: |