diff options
author | Walter Purcaro <vuolter@users.noreply.github.com> | 2015-03-20 23:26:51 +0100 |
---|---|---|
committer | Walter Purcaro <vuolter@users.noreply.github.com> | 2015-03-20 23:26:51 +0100 |
commit | 69e45f0e3e3636e81efcee3b1be696cd6f2f3814 (patch) | |
tree | 31d9756a4332781e13aa5d93f3ee53b46e99240f /module/plugins/hoster/UlozTo.py | |
parent | [DevhostStFolder] Fixup (diff) | |
download | pyload-69e45f0e3e3636e81efcee3b1be696cd6f2f3814.tar.xz |
Spare code cosmetics
Diffstat (limited to 'module/plugins/hoster/UlozTo.py')
-rw-r--r-- | module/plugins/hoster/UlozTo.py | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/module/plugins/hoster/UlozTo.py b/module/plugins/hoster/UlozTo.py index 035562962..3fd88bfb0 100644 --- a/module/plugins/hoster/UlozTo.py +++ b/module/plugins/hoster/UlozTo.py @@ -82,7 +82,7 @@ class UlozTo(SimpleHoster): else: self.handleFree(pyfile) - self.doCheckDownload() + self.checkFile() def handleFree(self, pyfile): @@ -124,7 +124,7 @@ class UlozTo(SimpleHoster): self.download(pyfile.url, get={'do': "directDownload"}, disposition=True) - def doCheckDownload(self): + def checkFile(self, rules={}): check = self.checkDownload({ "wrong_captcha": re.compile(r'<ul class="error">\s*<li>Error rewriting the text.</li>'), "offline" : re.compile(self.OFFLINE_PATTERN), @@ -154,5 +154,7 @@ class UlozTo(SimpleHoster): elif check == "not_found": self.fail(_("Server error - file not downloadable")) + return super(UlozTo, self).checkFile(rules) + getInfo = create_getInfo(UlozTo) |