diff options
author | Walter Purcaro <vuolter@users.noreply.github.com> | 2015-10-19 11:48:52 +0200 |
---|---|---|
committer | Walter Purcaro <vuolter@users.noreply.github.com> | 2015-10-19 11:48:52 +0200 |
commit | a3d498fee5ba71265589a750c56ba89bcc204035 (patch) | |
tree | 8e2875fc8a6941809f67a67bb1fdc84757fea30a /module/plugins/hoster/XFileSharing.py | |
parent | Merge pull request #2059 from GammaC0de/patch-1 (diff) | |
download | pyload-a3d498fee5ba71265589a750c56ba89bcc204035.tar.xz |
Spare fixes
Diffstat (limited to 'module/plugins/hoster/XFileSharing.py')
-rw-r--r-- | module/plugins/hoster/XFileSharing.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/module/plugins/hoster/XFileSharing.py b/module/plugins/hoster/XFileSharing.py index 89b58bb7f..01b2b0d6c 100644 --- a/module/plugins/hoster/XFileSharing.py +++ b/module/plugins/hoster/XFileSharing.py @@ -8,7 +8,7 @@ from module.plugins.internal.XFSHoster import XFSHoster, create_getInfo class XFileSharing(XFSHoster): __name__ = "XFileSharing" __type__ = "hoster" - __version__ = "0.57" + __version__ = "0.58" __status__ = "testing" __pattern__ = r'https?://(?:www\.)?(?:\w+\.)*(?P<DOMAIN>(?:[\d.]+|[\w\-^_]{3,63}(?:\.[a-zA-Z]{2,}){1,2})(?:\:\d+)?)/(?:embed-)?\w{12}(?:\W|$)' @@ -24,7 +24,7 @@ class XFileSharing(XFSHoster): def _log(self, level, plugintype, pluginname, messages): messages = (self.PLUGIN_NAME,) + messages - return self.plugin._log(level, plugintype, pluginname, messages) + return super(XFileSharing, self)._log(level, plugintype, pluginname, messages) def init(self): |