summaryrefslogtreecommitdiffstats
path: root/module/plugins/internal/Hook.py
diff options
context:
space:
mode:
authorGravatar Walter Purcaro <vuolter@users.noreply.github.com> 2015-06-15 02:05:56 +0200
committerGravatar Walter Purcaro <vuolter@users.noreply.github.com> 2015-06-15 02:05:56 +0200
commit725f4ee53a8e8797492329d015af18262e9ca369 (patch)
treeebc898bc74f4a1e497b7f3fe723664353a078e8d /module/plugins/internal/Hook.py
parentFix new internal plugins (diff)
downloadpyload-725f4ee53a8e8797492329d015af18262e9ca369.tar.xz
Fix https://github.com/pyload/pyload/issues/1496
Diffstat (limited to 'module/plugins/internal/Hook.py')
-rw-r--r--module/plugins/internal/Hook.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/module/plugins/internal/Hook.py b/module/plugins/internal/Hook.py
index 6931a7dba..71e8866f3 100644
--- a/module/plugins/internal/Hook.py
+++ b/module/plugins/internal/Hook.py
@@ -24,7 +24,7 @@ def threaded(fn):
class Hook(Base):
__name__ = "Hook"
__type__ = "hook"
- __version__ = "0.03"
+ __version__ = "0.04"
__config__ = [] #: [("name", "type", "desc", "default")]
__threaded__ = [] #@TODO: Remove in 0.4.10
@@ -183,7 +183,7 @@ class Hook(Base):
#: Deprecated, use method `captchaTask` instead
def newCaptchaTask(self, task):
- return self.captchaTask()
+ return self.captchaTask(task)
def captchaCorrect(self, task):