diff options
author | Walter Purcaro <vuolter@users.noreply.github.com> | 2015-10-01 18:59:55 +0200 |
---|---|---|
committer | Walter Purcaro <vuolter@users.noreply.github.com> | 2015-10-01 18:59:55 +0200 |
commit | 8d85a655d8cc408574f471306613bc05115c8c64 (patch) | |
tree | a468f6fdc525497d94e2bc43e263ac68e676cf4e /module/plugins/hoster/MegasharesCom.py | |
parent | A lot of plugin code cosmetics (2) (diff) | |
download | pyload-8d85a655d8cc408574f471306613bc05115c8c64.tar.xz |
Improve Hoster and Crypter + general fixup
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 04fae27b4..b183b882d 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.31" + __version__ = "0.32" __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() + self.restart(premium=True) else: self.retry_captcha(msg=_("Failed to reactivate passport")) |