diff options
author | Walter Purcaro <vuolter@gmail.com> | 2015-01-16 15:35:16 +0100 |
---|---|---|
committer | Walter Purcaro <vuolter@gmail.com> | 2015-01-16 15:35:16 +0100 |
commit | 20ac00cd79c4f5d5ea3e55bb7156af7d3cdb9c4d (patch) | |
tree | 07371e8a7bde6e6002ef289432c6975a4fdddc38 /module/plugins/hoster | |
parent | [LinkdecrypterCom] Improve getCrypters routine (diff) | |
parent | fixed a minor typo (self -> cls) (diff) | |
download | pyload-20ac00cd79c4f5d5ea3e55bb7156af7d3cdb9c4d.tar.xz |
Merge pull request #1050 from radek-senfeld/stable
[WebshareCz] fixed a minor typo (self -> cls)
Diffstat (limited to 'module/plugins/hoster')
-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() |