summaryrefslogtreecommitdiffstats
path: root/module/plugins/hoster/UploadheroCom.py
diff options
context:
space:
mode:
authorGravatar Walter Purcaro <vuolter@users.noreply.github.com> 2015-08-19 02:38:11 +0200
committerGravatar Walter Purcaro <vuolter@users.noreply.github.com> 2015-08-19 02:38:11 +0200
commit52dafac35c3cbfd110746b981afd80da1632a373 (patch)
tree09e17d3d6ea93d9cd0bd175dce7e3f3bb8b8be6a /module/plugins/hoster/UploadheroCom.py
parentTemp fix https://github.com/pyload/pyload/pull/1708 (diff)
downloadpyload-52dafac35c3cbfd110746b981afd80da1632a373.tar.xz
Spare plugin updates
Diffstat (limited to 'module/plugins/hoster/UploadheroCom.py')
-rw-r--r--module/plugins/hoster/UploadheroCom.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/module/plugins/hoster/UploadheroCom.py b/module/plugins/hoster/UploadheroCom.py
index 2af0f32fc..ded0d60dd 100644
--- a/module/plugins/hoster/UploadheroCom.py
+++ b/module/plugins/hoster/UploadheroCom.py
@@ -44,7 +44,7 @@ class UploadheroCom(SimpleHoster):
if m is None:
self.error(_("Captcha not found"))
- captcha = self.captcha.decrypt(urlparse.urljoin("http://uploadhero.co", m.group(1)))
+ captcha = self.captcha.decrypt(urlparse.urljoin("http://uploadhero.co/", m.group(1)))
self.html = self.load(pyfile.url,
get={'code': captcha})
@@ -58,7 +58,7 @@ class UploadheroCom(SimpleHoster):
def check_errors(self):
m = re.search(self.IP_BLOCKED_PATTERN, self.html)
if m:
- self.html = self.load(urlparse.urljoin("http://uploadhero.co", m.group(1)))
+ self.html = self.load(urlparse.urljoin("http://uploadhero.co/", m.group(1)))
m = re.search(self.IP_WAIT_PATTERN, self.html)
wait_time = (int(m.group(1)) * 60 + int(m.group(2))) if m else 5 * 60