summaryrefslogtreecommitdiffstats
path: root/module
diff options
context:
space:
mode:
authorGravatar Walter Purcaro <vuolter@users.noreply.github.com> 2015-06-23 23:43:12 +0200
committerGravatar Walter Purcaro <vuolter@users.noreply.github.com> 2015-06-23 23:43:12 +0200
commit58de8f805b4a7303674d5d3c9aa9b58dcef30f03 (patch)
tree54e41676595014f73d6967c7c08b47ebb90dd3af /module
parentMerge pull request #1522 from funkyslap/patch-2 (diff)
parentUpdate HighWayMe.py (diff)
downloadpyload-58de8f805b4a7303674d5d3c9aa9b58dcef30f03.tar.xz
Merge pull request #1537 from GammaC0de/patch-1
[HighWayMe] Update
Diffstat (limited to 'module')
-rw-r--r--module/plugins/hooks/HighWayMeHook.py (renamed from module/plugins/hooks/HighWayMe.py)2
-rw-r--r--module/plugins/hoster/HighWayMe.py4
2 files changed, 3 insertions, 3 deletions
diff --git a/module/plugins/hooks/HighWayMe.py b/module/plugins/hooks/HighWayMeHook.py
index 7d5c88ecc..ff4d3f96b 100644
--- a/module/plugins/hooks/HighWayMe.py
+++ b/module/plugins/hooks/HighWayMeHook.py
@@ -7,7 +7,7 @@ from module.plugins.internal.MultiHook import MultiHook
class HighWayMeHook(MultiHook):
__name__ = "HighWayMeHook"
__type__ = "hook"
- __version__ = "0.02"
+ __version__ = "0.03"
__config__ = [("pluginmode" , "all;listed;unlisted", "Use for plugins" , "all"),
("pluginlist" , "str" , "Plugin list (comma separated)" , "" ),
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()