diff options
author | 2015-07-24 06:55:49 +0200 | |
---|---|---|
committer | 2015-07-24 06:55:49 +0200 | |
commit | 94d017cd2a5c1f194960827a8c7e46afc3682008 (patch) | |
tree | e06f2d20d6c4cfa2cefb446c3b266cc3c1aa4e69 /module/plugins/hoster/UlozTo.py | |
parent | Hotfixes (diff) | |
download | pyload-94d017cd2a5c1f194960827a8c7e46afc3682008.tar.xz |
Hotfixes (2)
Diffstat (limited to 'module/plugins/hoster/UlozTo.py')
-rw-r--r-- | module/plugins/hoster/UlozTo.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/module/plugins/hoster/UlozTo.py b/module/plugins/hoster/UlozTo.py index 1cd4ec853..d2ac4ea28 100644 --- a/module/plugins/hoster/UlozTo.py +++ b/module/plugins/hoster/UlozTo.py @@ -16,7 +16,7 @@ class UlozTo(SimpleHoster): __name__ = "UlozTo" __type__ = "hoster" __version__ = "1.11" - __status__ = "stable" + __status__ = "testing" __pattern__ = r'http://(?:www\.)?(uloz\.to|ulozto\.(cz|sk|net)|bagruj\.cz|zachowajto\.pl)/(?:live/)?(?P<ID>\w+/[^/?]*)' __config__ = [("use_premium", "bool", "Use premium account if available", True)] @@ -45,7 +45,7 @@ class UlozTo(SimpleHoster): def setup(self): self.chunk_limit = 16 if self.premium else 1 - self.multi_dl = True + self.multiDL = True self.resume_download = True @@ -141,7 +141,7 @@ class UlozTo(SimpleHoster): elif check == "server_error": self.log_error(_("Server error, try downloading later")) - self.multi_dl = False + self.multiDL = False self.wait(1 * 60 * 60, True) self.retry() |