diff options
Diffstat (limited to 'module/HookManager.py')
-rw-r--r-- | module/HookManager.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/module/HookManager.py b/module/HookManager.py index 41e4c5ef0..3df8a1fc7 100644 --- a/module/HookManager.py +++ b/module/HookManager.py @@ -106,7 +106,7 @@ class HookManager(): for plugin in self.plugins: if plugin.isActivated(): if "packageFinished" in plugin.__threaded__: - self.startThread(plugin.packageFinished, pyfile) + self.startThread(plugin.packageFinished, package) else: plugin.packageFinished(package) |