diff options
author | Walter Purcaro <vuolter@gmail.com> | 2014-12-22 22:34:16 +0100 |
---|---|---|
committer | Walter Purcaro <vuolter@gmail.com> | 2014-12-22 22:34:16 +0100 |
commit | b10b1cefdb87a3544a9a0f9fc27ee2fa1ee3cbed (patch) | |
tree | 79e81ec2a41783aefe9717d126bafe63d6c2055d | |
parent | New plugin: CloudzillaTo (diff) | |
download | pyload-b10b1cefdb87a3544a9a0f9fc27ee2fa1ee3cbed.tar.xz |
[CloudzillaTo] Typo
-rw-r--r-- | module/plugins/hoster/CloudzillaTo.py | 4 |
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) |