diff options
author | 2015-07-24 06:55:49 +0200 | |
---|---|---|
committer | 2015-07-24 06:55:49 +0200 | |
commit | 94d017cd2a5c1f194960827a8c7e46afc3682008 (patch) | |
tree | e06f2d20d6c4cfa2cefb446c3b266cc3c1aa4e69 /module/plugins/crypter/XFileSharingProFolder.py | |
parent | Hotfixes (diff) | |
download | pyload-94d017cd2a5c1f194960827a8c7e46afc3682008.tar.xz |
Hotfixes (2)
Diffstat (limited to 'module/plugins/crypter/XFileSharingProFolder.py')
-rw-r--r-- | module/plugins/crypter/XFileSharingProFolder.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/module/plugins/crypter/XFileSharingProFolder.py b/module/plugins/crypter/XFileSharingProFolder.py index a831b7e95..12335515e 100644 --- a/module/plugins/crypter/XFileSharingProFolder.py +++ b/module/plugins/crypter/XFileSharingProFolder.py @@ -9,7 +9,7 @@ class XFileSharingProFolder(XFSCrypter): __name__ = "XFileSharingProFolder" __type__ = "crypter" __version__ = "0.09" - __status__ = "stable" + __status__ = "testing" __pattern__ = r'https?://(?:www\.)?(?:\w+\.)*?(?P<DOMAIN>(?:[\d.]+|[\w\-^_]{3,}(?:\.[a-zA-Z]{2,}){1,2})(?:\:\d+)?)/(?:user|folder)s?/\w+' __config__ = [("use_subfolder" , "bool", "Save package to subfolder" , True), @@ -20,8 +20,8 @@ class XFileSharingProFolder(XFSCrypter): __authors__ = [("Walter Purcaro", "vuolter@gmail.com")] - def _log(self, type, args): - return super(XFileSharingProFolder, self)._log(type, (self.HOSTER_NAME,) + args) + def _log(self, level, args): + return super(XFileSharingProFolder, self)._log(level, (self.HOSTER_NAME,) + args) def init(self): |