diff options
author | RaNaN <Mast3rRaNaN@hotmail.de> | 2012-01-13 23:24:21 +0100 |
---|---|---|
committer | RaNaN <Mast3rRaNaN@hotmail.de> | 2012-01-13 23:24:21 +0100 |
commit | c7ad1cc5b4a5d190a060e3ddd9274c3065da6708 (patch) | |
tree | 639062525ddde3b8c785f26a0f4091ec10d9e204 /module/HookManager.py | |
parent | fixed pyflakes and sloccount (diff) | |
download | pyload-c7ad1cc5b4a5d190a060e3ddd9274c3065da6708.tar.xz |
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 8afd6fe26..0ad37b321 100644 --- a/module/HookManager.py +++ b/module/HookManager.py @@ -200,7 +200,7 @@ class HookManager: def activePlugins(self): """ returns all active plugins """ - return [x for x in self.plugins if x.isActivated()] + return [x for x in self.plugins.itervalues() if x.isActivated()] def getAllInfo(self): """returns info stored by hook plugins""" |