summaryrefslogtreecommitdiffstats
path: root/module/HookManager.py
diff options
context:
space:
mode:
authorGravatar RaNaN <Mast3rRaNaN@hotmail.de> 2011-02-04 20:43:19 +0100
committerGravatar RaNaN <Mast3rRaNaN@hotmail.de> 2011-02-04 20:43:19 +0100
commit0e86ad65cc532ca648d5441c4431c4f8b5ee5df5 (patch)
tree46736838984cc8f3ae01cfe0069edc4555ad7103 /module/HookManager.py
parentshare-online.biz premium fix (diff)
downloadpyload-0e86ad65cc532ca648d5441c4431c4f8b5ee5df5.tar.xz
py 2.5 fix
Diffstat (limited to 'module/HookManager.py')
-rw-r--r--module/HookManager.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/module/HookManager.py b/module/HookManager.py
index 6c6c0170f..018508c51 100644
--- a/module/HookManager.py
+++ b/module/HookManager.py
@@ -147,4 +147,4 @@ class HookManager():
def activePlugins(self):
""" returns all active plugins """
- return filter(methodcaller("isActivated"), self.plugins)
+ return [x for x in self.plugins if x.isActivated()]