diff options
author | Walter Purcaro <vuolter@gmail.com> | 2014-10-05 03:07:22 +0200 |
---|---|---|
committer | Walter Purcaro <vuolter@gmail.com> | 2014-10-05 03:07:22 +0200 |
commit | 3d1ec9793144336beceac4f4df178f2259ffd976 (patch) | |
tree | fcd205f255d6d0e14dbf0e7d81ffcfd43010cd7a /pyload/plugins/internal | |
parent | Trace broken plugin __pattern__ blocking url parsing (diff) | |
download | pyload-3d1ec9793144336beceac4f4df178f2259ffd976.tar.xz |
Rename XFileSharingPro to XFSPHoster
Diffstat (limited to 'pyload/plugins/internal')
-rw-r--r-- | pyload/plugins/internal/XFSPHoster.py (renamed from pyload/plugins/internal/XFileSharingPro.py) | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/pyload/plugins/internal/XFileSharingPro.py b/pyload/plugins/internal/XFSPHoster.py index 0dec852d4..3adae43c5 100644 --- a/pyload/plugins/internal/XFileSharingPro.py +++ b/pyload/plugins/internal/XFSPHoster.py @@ -13,13 +13,13 @@ from pyload.plugins.internal.SimpleHoster import SimpleHoster, create_getInfo, P from pyload.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" @@ -59,7 +59,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() @@ -357,4 +357,4 @@ class XFileSharingPro(SimpleHoster): return 0 -getInfo = create_getInfo(XFileSharingPro) +getInfo = create_getInfo(XFSPHoster) |