summaryrefslogtreecommitdiffstats
path: root/module/plugins/hoster/FilerNet.py
diff options
context:
space:
mode:
authorGravatar Walter Purcaro <vuolter@gmail.com> 2014-12-17 02:40:59 +0100
committerGravatar Walter Purcaro <vuolter@gmail.com> 2014-12-17 02:40:59 +0100
commitaab32f731e0b5c996004312ee8862fe30cbd6b89 (patch)
tree94137cf7d083a6d431700d5de8f882501db63da8 /module/plugins/hoster/FilerNet.py
parentSpare code cosmetics (diff)
downloadpyload-aab32f731e0b5c996004312ee8862fe30cbd6b89.tar.xz
[FilerNet] Typo
Diffstat (limited to 'module/plugins/hoster/FilerNet.py')
-rw-r--r--module/plugins/hoster/FilerNet.py10
1 files changed, 4 insertions, 6 deletions
diff --git a/module/plugins/hoster/FilerNet.py b/module/plugins/hoster/FilerNet.py
index 5a33439d2..2a38ac470 100644
--- a/module/plugins/hoster/FilerNet.py
+++ b/module/plugins/hoster/FilerNet.py
@@ -16,7 +16,7 @@ from module.plugins.internal.SimpleHoster import SimpleHoster, create_getInfo
class FilerNet(SimpleHoster):
__name__ = "FilerNet"
__type__ = "hoster"
- __version__ = "0.11"
+ __version__ = "0.12"
__pattern__ = r'https?://(?:www\.)?filer\.net/get/\w+'
@@ -63,7 +63,7 @@ class FilerNet(SimpleHoster):
self.req.http.c.setopt(pycurl.FOLLOWLOCATION, 0)
self.load(self.pyfile.url, post={'recaptcha_challenge_field': challenge,
'recaptcha_response_field' : response,
- 'hash' : inputs['hash']}))
+ 'hash' : inputs['hash']})
self.req.http.c.setopt(pycurl.FOLLOWLOCATION, 1)
if 'location' in self.req.http.header.lower():
@@ -75,10 +75,8 @@ class FilerNet(SimpleHoster):
def downloadLink(self, link):
- if not link:
- return
-
- self.download(urljoin("http://filer.net/", link), disposition=True)
+ if link and isinstance(link, basestring):
+ self.download(urljoin("http://filer.net/", link), disposition=True)
getInfo = create_getInfo(FilerNet)