diff options
author | GammaC0de <GammaC0de@users.noreply.github.com> | 2015-06-23 23:32:03 +0200 |
---|---|---|
committer | GammaC0de <GammaC0de@users.noreply.github.com> | 2015-06-23 23:32:03 +0200 |
commit | dd609f533d2524d37aec5b71d741a6bdb3b95f81 (patch) | |
tree | 54e41676595014f73d6967c7c08b47ebb90dd3af | |
parent | HighWayMe.py -> HighWayMeHook.py (diff) | |
download | pyload-dd609f533d2524d37aec5b71d741a6bdb3b95f81.tar.xz |
Update HighWayMe.py
-rw-r--r-- | module/plugins/hoster/HighWayMe.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/module/plugins/hoster/HighWayMe.py b/module/plugins/hoster/HighWayMe.py index 9c79f8dc4..9f39c21e8 100644 --- a/module/plugins/hoster/HighWayMe.py +++ b/module/plugins/hoster/HighWayMe.py @@ -9,7 +9,7 @@ from module.plugins.internal.SimpleHoster import secondsToMidnight class HighWayMe(MultiHoster): __name__ = "HighWayMe" __type__ = "hoster" - __version__ = "0.11" + __version__ = "0.12" __pattern__ = r'https?://.+high-way\.my' __config__ = [("use_premium", "bool", "Use premium account if available", True)] @@ -24,7 +24,7 @@ class HighWayMe(MultiHoster): def checkErrors(self): - if self.html.get('code') == 302:: #@NOTE: This is not working. It should by if 302 Moved Temporarily then ... But I don't now how to implement it. + if self.html.get('code') == 302: #@NOTE: This is not working. It should by if 302 Moved Temporarily then ... But I don't now how to implement it. self.account.relogin(self.user) self.retry() |