summaryrefslogtreecommitdiffstats
path: root/module/plugins
diff options
context:
space:
mode:
authorGravatar Walter Purcaro <vuolter@gmail.com> 2014-10-08 16:04:14 +0200
committerGravatar Walter Purcaro <vuolter@gmail.com> 2014-10-08 16:04:14 +0200
commitb7bc4c7a920cb6e768948d8489af40bf36a72810 (patch)
treea0c6831fd326e9dec481d039d36894aaf0ab9ac0 /module/plugins
parent[XFSPAccount] Fix missing COOKIE typecheck (diff)
downloadpyload-b7bc4c7a920cb6e768948d8489af40bf36a72810.tar.xz
[XFileSharingPro] Rename to XFSPHoster
Diffstat (limited to 'module/plugins')
-rw-r--r--module/plugins/internal/XFSPHoster.py (renamed from module/plugins/hoster/XFileSharingPro.py)8
1 files changed, 4 insertions, 4 deletions
diff --git a/module/plugins/hoster/XFileSharingPro.py b/module/plugins/internal/XFSPHoster.py
index d9f311fa1..2376c1b84 100644
--- a/module/plugins/hoster/XFileSharingPro.py
+++ b/module/plugins/internal/XFSPHoster.py
@@ -13,13 +13,13 @@ from module.plugins.internal.SimpleHoster import create_getInfo, PluginParseErro
from module.utils import html_unescape
-class XFileSharingPro(SimpleHoster):
+class XFSPHoster(SimpleHoster):
"""
Common base for XFileSharingPro hosters like EasybytezCom, CramitIn, FiledinoCom...
Some hosters may work straight away when added to __pattern__
However, most of them will NOT work because they are either down or running a customized version
"""
- __name__ = "XFileSharingPro"
+ __name__ = "XFSPHoster"
__type__ = "hoster"
__version__ = "0.37"
@@ -60,7 +60,7 @@ class XFileSharingPro(SimpleHoster):
def setup(self):
self.chunkLimit = 1
- if self.__name__ == "XFileSharingPro":
+ if self.__name__ == "XFSPHoster":
self.multiDL = True
self.__pattern__ = self.core.pluginManager.hosterPlugins[self.__name__]['pattern']
self.HOSTER_NAME = re.match(self.__pattern__, self.pyfile.url).group(1).lower()
@@ -358,4 +358,4 @@ class XFileSharingPro(SimpleHoster):
return 0
-getInfo = create_getInfo(XFileSharingPro)
+getInfo = create_getInfo(XFSPHoster)