summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Walter Purcaro <vuolter@gmail.com> 2015-01-18 19:36:51 +0100
committerGravatar Walter Purcaro <vuolter@gmail.com> 2015-01-18 19:36:51 +0100
commit08de0b846cc17d3f7df4e0573b5c8d413ff16449 (patch)
tree62c3346d940ea623973408de4d62c472a7c8dfbb
parent[SimpleHoster] Fix fileUrl follow_location (diff)
downloadpyload-08de0b846cc17d3f7df4e0573b5c8d413ff16449.tar.xz
[ZeveraCom] Fix handlePremium
-rw-r--r--module/plugins/hoster/ZeveraCom.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/module/plugins/hoster/ZeveraCom.py b/module/plugins/hoster/ZeveraCom.py
index fb251142e..665b64789 100644
--- a/module/plugins/hoster/ZeveraCom.py
+++ b/module/plugins/hoster/ZeveraCom.py
@@ -10,7 +10,7 @@ from module.plugins.internal.MultiHoster import MultiHoster, create_getInfo
class ZeveraCom(MultiHoster):
__name__ = "ZeveraCom"
__type__ = "hoster"
- __version__ = "0.27"
+ __version__ = "0.28"
__pattern__ = r'https?://(?:www\.)zevera\.com/(getFiles\.ashx|Members/download\.ashx)\?.*ourl=.+'
@@ -21,7 +21,7 @@ class ZeveraCom(MultiHoster):
def handlePremium(self, pyfile):
- return "https://%s/getFiles.ashx?ourl=%s" % (self.account.HOSTER_DOMAIN, pyfile.url)
+ self.link = "https://%s/getFiles.ashx?ourl=%s" % (self.account.HOSTER_DOMAIN, pyfile.url)
def checkFile(self):