diff options
Diffstat (limited to 'module/plugins/hoster/WebshareCz.py')
| -rw-r--r-- | module/plugins/hoster/WebshareCz.py | 4 | 
1 files changed, 2 insertions, 2 deletions
diff --git a/module/plugins/hoster/WebshareCz.py b/module/plugins/hoster/WebshareCz.py index e3424fc21..98187d46a 100644 --- a/module/plugins/hoster/WebshareCz.py +++ b/module/plugins/hoster/WebshareCz.py @@ -9,7 +9,7 @@ from module.plugins.internal.SimpleHoster import SimpleHoster, create_getInfo  class WebshareCz(SimpleHoster):      __name__    = "WebshareCz"      __type__    = "hoster" -    __version__ = "0.15" +    __version__ = "0.16"      __pattern__ = r'https?://(?:www\.)?webshare\.cz/(?:#/)?file/(?P<ID>\w+)' @@ -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()  | 
