diff options
author | Radek Senfeld <rush@logic.cz> | 2015-01-16 12:00:33 +0100 |
---|---|---|
committer | Radek Senfeld <rush@logic.cz> | 2015-01-16 12:00:33 +0100 |
commit | bde582c23a2852a613ba10fd1bbb669f82af103f (patch) | |
tree | 07371e8a7bde6e6002ef289432c6975a4fdddc38 /module/plugins | |
parent | [LinkdecrypterCom] Improve getCrypters routine (diff) | |
download | pyload-bde582c23a2852a613ba10fd1bbb669f82af103f.tar.xz |
fixed a minor typo (self -> cls)
Diffstat (limited to 'module/plugins')
-rw-r--r-- | module/plugins/hoster/WebshareCz.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/module/plugins/hoster/WebshareCz.py b/module/plugins/hoster/WebshareCz.py index e3424fc21..a69aa2242 100644 --- a/module/plugins/hoster/WebshareCz.py +++ b/module/plugins/hoster/WebshareCz.py @@ -21,7 +21,7 @@ class WebshareCz(SimpleHoster): @classmethod def getInfo(cls, url="", html=""): - info = super(WebshareCz, self).getInfo(url, html) + info = super(WebshareCz, cls).getInfo(url, html) if url: info['pattern'] = re.match(cls.__pattern__, url).groupdict() |