summaryrefslogtreecommitdiffstats
path: root/pyload/plugin/hoster/UploadedTo.py
diff options
context:
space:
mode:
authorGravatar ardi69 <armin@diedering.de> 2015-04-21 06:51:24 +0200
committerGravatar ardi69 <armin@diedering.de> 2015-04-21 06:51:24 +0200
commit2f8433b6a10505d29a1b63ea8bbd9b0bf3f7d9f6 (patch)
treeb82a8b5fc0a309f69733b0a004284f4ef45833d8 /pyload/plugin/hoster/UploadedTo.py
parentadded check of classname == filename (diff)
parentMerge branch 'pr/n10_ardi69' into 0.4.10 (diff)
downloadpyload-2f8433b6a10505d29a1b63ea8bbd9b0bf3f7d9f6.tar.xz
Merge pull request #4 from vuolter/0.4.10
vuolter HEAD
Diffstat (limited to 'pyload/plugin/hoster/UploadedTo.py')
-rw-r--r--pyload/plugin/hoster/UploadedTo.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/pyload/plugin/hoster/UploadedTo.py b/pyload/plugin/hoster/UploadedTo.py
index 487c01576..c8b201ec6 100644
--- a/pyload/plugin/hoster/UploadedTo.py
+++ b/pyload/plugin/hoster/UploadedTo.py
@@ -57,7 +57,7 @@ class UploadedTo(SimpleHoster):
def setup(self):
self.multiDL = self.resumeDownload = self.premium
- self.chunkLimit = 1 # critical problems with more chunks
+ self.chunkLimit = 1 #: critical problems with more chunks
def checkErrors(self):
@@ -68,14 +68,14 @@ class UploadedTo(SimpleHoster):
elif "limit-size" in self.html:
self.fail(_("File too big for free download"))
- elif "limit-slot" in self.html: # Temporary restriction so just wait a bit
+ elif "limit-slot" in self.html: #: Temporary restriction so just wait a bit
self.wait(30 * 60, True)
self.retry()
elif "limit-parallel" in self.html:
self.fail(_("Cannot download in parallel"))
- elif "limit-dl" in self.html or self.DL_LIMIT_ERROR in self.html: # limit-dl
+ elif "limit-dl" in self.html or self.DL_LIMIT_ERROR in self.html: #: limit-dl
self.wait(3 * 60 * 60, True)
self.retry()