summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--module/plugins/hoster/CloudzillaTo.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/module/plugins/hoster/CloudzillaTo.py b/module/plugins/hoster/CloudzillaTo.py
index def253281..2e98842a6 100644
--- a/module/plugins/hoster/CloudzillaTo.py
+++ b/module/plugins/hoster/CloudzillaTo.py
@@ -7,7 +7,7 @@ from module.common.json_layer import json_loads
class CloudzillaTo(SimpleHoster):
__name__ = "CloudzillaTo"
__type__ = "hoster"
- __version__ = "0.01"
+ __version__ = "0.02"
__pattern__ = r'http://(?:www\.)?cloudzilla\.to/share/file/(?P<ID>[\w^_]+)'
@@ -37,7 +37,7 @@ class CloudzillaTo(SimpleHoster):
def handlePremium(self):
- return handleFree(self):
+ return self.handleFree()
getInfo = create_getInfo(CloudzillaTo)