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/MegasharesCom.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/MegasharesCom.py')
-rw-r--r-- | module/plugins/hoster/MegasharesCom.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/module/plugins/hoster/MegasharesCom.py b/module/plugins/hoster/MegasharesCom.py index b183b882d..7d7d8adb5 100644 --- a/module/plugins/hoster/MegasharesCom.py +++ b/module/plugins/hoster/MegasharesCom.py @@ -9,7 +9,7 @@ from module.plugins.internal.SimpleHoster import SimpleHoster, create_getInfo class MegasharesCom(SimpleHoster): __name__ = "MegasharesCom" __type__ = "hoster" - __version__ = "0.32" + __version__ = "0.33" __status__ = "testing" __pattern__ = r'http://(?:www\.)?(d\d{2}\.)?megashares\.com/((index\.php)?\?d\d{2}=|dl/)\w+' @@ -70,7 +70,7 @@ class MegasharesCom(SimpleHoster): if 'Thank you for reactivating your passport' in res: self.captcha.correct() - self.restart(premium=True) + self.restart() else: self.retry_captcha(msg=_("Failed to reactivate passport")) |