diff options
-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) |