diff options
author | 2015-07-30 14:37:44 +0200 | |
---|---|---|
committer | 2015-07-30 14:37:44 +0200 | |
commit | 88f98ab3bd6e091c1b6ca6ac9fddc37b2e29694c (patch) | |
tree | 2d32aa128cd0d660fc2642fb6aca789871bd80b8 /module/plugins/hooks/CaptchaBrotherhood.py | |
parent | Still improving _log methods (diff) | |
download | pyload-88f98ab3bd6e091c1b6ca6ac9fddc37b2e29694c.tar.xz |
Fix get_code call in captcha hooks
Diffstat (limited to 'module/plugins/hooks/CaptchaBrotherhood.py')
-rw-r--r-- | module/plugins/hooks/CaptchaBrotherhood.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/module/plugins/hooks/CaptchaBrotherhood.py b/module/plugins/hooks/CaptchaBrotherhood.py index 42a9a26d9..0df1ab8a9 100644 --- a/module/plugins/hooks/CaptchaBrotherhood.py +++ b/module/plugins/hooks/CaptchaBrotherhood.py @@ -161,7 +161,7 @@ class CaptchaBrotherhood(Hook): try: ticket, result = self.submit(c) except CaptchaBrotherhoodException, e: - task.error = e.getCode() + task.error = e.get_code() return task.data['ticket'] = ticket |