summaryrefslogtreecommitdiffstats
path: root/module/plugins/hoster/XFileSharingPro.py
diff options
context:
space:
mode:
authorGravatar Walter Purcaro <vuolter@users.noreply.github.com> 2015-07-24 06:55:49 +0200
committerGravatar Walter Purcaro <vuolter@users.noreply.github.com> 2015-07-24 06:55:49 +0200
commit94d017cd2a5c1f194960827a8c7e46afc3682008 (patch)
treee06f2d20d6c4cfa2cefb446c3b266cc3c1aa4e69 /module/plugins/hoster/XFileSharingPro.py
parentHotfixes (diff)
downloadpyload-94d017cd2a5c1f194960827a8c7e46afc3682008.tar.xz
Hotfixes (2)
Diffstat (limited to 'module/plugins/hoster/XFileSharingPro.py')
-rw-r--r--module/plugins/hoster/XFileSharingPro.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/module/plugins/hoster/XFileSharingPro.py b/module/plugins/hoster/XFileSharingPro.py
index 4d6877b2b..bd629d51e 100644
--- a/module/plugins/hoster/XFileSharingPro.py
+++ b/module/plugins/hoster/XFileSharingPro.py
@@ -9,7 +9,7 @@ class XFileSharingPro(XFSHoster):
__name__ = "XFileSharingPro"
__type__ = "hoster"
__version__ = "0.49"
- __status__ = "stable"
+ __status__ = "testing"
__pattern__ = r'https?://(?:www\.)?(?:\w+\.)*?(?P<DOMAIN>(?:[\d.]+|[\w\-^_]{3,}(?:\.[a-zA-Z]{2,}){1,2})(?:\:\d+)?)/(?:embed-)?\w{12}(?:\W|$)'
@@ -21,8 +21,8 @@ class XFileSharingPro(XFSHoster):
URL_REPLACEMENTS = [("/embed-", "/")]
- def _log(self, type, args):
- return super(XFileSharingPro, self)._log(type, (self.HOSTER_NAME,) + args)
+ def _log(self, level, args):
+ return super(XFileSharingPro, self)._log(level, (self.HOSTER_NAME,) + args)
def init(self):
@@ -52,7 +52,7 @@ class XFileSharingPro(XFSHoster):
def setup(self):
self.chunk_limit = 1
self.resume_download = self.premium
- self.multi_dl = True
+ self.multiDL = True
getInfo = create_getInfo(XFileSharingPro)