diff options
author | 2015-10-02 12:30:04 +0200 | |
---|---|---|
committer | 2015-10-02 12:30:04 +0200 | |
commit | 4afeed04d2913b7635c5cd3917c90b928d53b151 (patch) | |
tree | 0fa16b60f9f7c9c73581a7ee3ab963ed24b97255 /module/plugins/hoster/UnibytesCom.py | |
parent | Merge pull request #1933 from jansohn/stable (diff) | |
download | pyload-4afeed04d2913b7635c5cd3917c90b928d53b151.tar.xz |
Fix https://github.com/pyload/pyload/issues/1932
Diffstat (limited to 'module/plugins/hoster/UnibytesCom.py')
-rw-r--r-- | module/plugins/hoster/UnibytesCom.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/module/plugins/hoster/UnibytesCom.py b/module/plugins/hoster/UnibytesCom.py index 6af02438f..15b553162 100644 --- a/module/plugins/hoster/UnibytesCom.py +++ b/module/plugins/hoster/UnibytesCom.py @@ -10,7 +10,7 @@ from module.plugins.internal.SimpleHoster import SimpleHoster, create_getInfo class UnibytesCom(SimpleHoster): __name__ = "UnibytesCom" __type__ = "hoster" - __version__ = "0.15" + __version__ = "0.16" __status__ = "testing" __pattern__ = r'https?://(?:www\.)?unibytes\.com/[\w .-]{11}B' @@ -46,7 +46,7 @@ class UnibytesCom(SimpleHoster): if '>Somebody else is already downloading using your IP-address<' in self.html: self.wait(10 * 60, True) - self.restart(premium=True) + self.restart() if post_data['step'] == "last": m = re.search(self.LINK_FREE_PATTERN, self.html) |