diff options
Diffstat (limited to 'pyload/plugins/account/XFileSharingPro.py')
-rw-r--r-- | pyload/plugins/account/XFileSharingPro.py | 30 |
1 files changed, 0 insertions, 30 deletions
diff --git a/pyload/plugins/account/XFileSharingPro.py b/pyload/plugins/account/XFileSharingPro.py deleted file mode 100644 index 834fb9735..000000000 --- a/pyload/plugins/account/XFileSharingPro.py +++ /dev/null @@ -1,30 +0,0 @@ -# -*- coding: utf-8 -*- - -from pyload.plugins.internal.XFSAccount import XFSAccount - - -class XFileSharingPro(XFSAccount): - __name = "XFileSharingPro" - __type = "account" - __version = "0.05" - - __description = """XFileSharingPro multi-purpose account plugin""" - __license = "GPLv3" - __authors = [("Walter Purcaro", "vuolter@gmail.com")] - - - HOSTER_DOMAIN = None - - - def init(self): - if self.HOSTER_DOMAIN: - return super(XFileSharingPro, self).init() - - - def loadAccountInfo(self, user, req): - return super(XFileSharingPro if self.HOSTER_DOMAIN else XFSAccount, self).loadAccountInfo(user, req) - - - def login(self, user, data, req): - if self.HOSTER_DOMAIN: - return super(XFileSharingPro, self).login(user, data, req) |