diff options
Diffstat (limited to 'pyload/plugin/hoster/CzshareCom.py')
-rw-r--r-- | pyload/plugin/hoster/CzshareCom.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/pyload/plugin/hoster/CzshareCom.py b/pyload/plugin/hoster/CzshareCom.py index 9926c8d74..85ed238f0 100644 --- a/pyload/plugin/hoster/CzshareCom.py +++ b/pyload/plugin/hoster/CzshareCom.py @@ -64,7 +64,7 @@ class CzshareCom(SimpleHoster): return True - def handlePremium(self, pyfile): + def handle_premium(self, pyfile): # parse download link try: form = re.search(self.PREMIUM_FORM_PATTERN, self.html, re.S).group(1) @@ -77,7 +77,7 @@ class CzshareCom(SimpleHoster): self.download("http://sdilej.cz/profi_down.php", post=inputs, disposition=True) - def handleFree(self, pyfile): + def handle_free(self, pyfile): # get free url m = re.search(self.FREE_URL_PATTERN, self.html) if m is None: |