diff options
author | Walter Purcaro <vuolter@users.noreply.github.com> | 2015-05-30 03:44:08 +0200 |
---|---|---|
committer | Walter Purcaro <vuolter@users.noreply.github.com> | 2015-05-30 03:44:08 +0200 |
commit | 0d86af276ac81e610ca20d3c221c1f1caf2a525a (patch) | |
tree | 47e020b9f317fbb6ba51049f4eb1434f8c890a83 /module/plugins/hoster/FilerNet.py | |
parent | [XFileSharingPro] Improve hook regexp (diff) | |
download | pyload-0d86af276ac81e610ca20d3c221c1f1caf2a525a.tar.xz |
Update plugins after splitting CaptchaService
Diffstat (limited to 'module/plugins/hoster/FilerNet.py')
-rw-r--r-- | module/plugins/hoster/FilerNet.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/module/plugins/hoster/FilerNet.py b/module/plugins/hoster/FilerNet.py index 156392c79..3b876ed48 100644 --- a/module/plugins/hoster/FilerNet.py +++ b/module/plugins/hoster/FilerNet.py @@ -8,14 +8,14 @@ import pycurl import re import urlparse -from module.plugins.internal.CaptchaService import ReCaptcha +from module.plugins.internal.ReCaptcha import ReCaptcha from module.plugins.internal.SimpleHoster import SimpleHoster, create_getInfo class FilerNet(SimpleHoster): __name__ = "FilerNet" __type__ = "hoster" - __version__ = "0.19" + __version__ = "0.20" __pattern__ = r'https?://(?:www\.)?filer\.net/get/\w+' __config__ = [("use_premium", "bool", "Use premium account if available", True)] |