summaryrefslogtreecommitdiffstats
path: root/module/plugins/accounts/XFileSharingPro.py
diff options
context:
space:
mode:
Diffstat (limited to 'module/plugins/accounts/XFileSharingPro.py')
-rw-r--r--module/plugins/accounts/XFileSharingPro.py26
1 files changed, 0 insertions, 26 deletions
diff --git a/module/plugins/accounts/XFileSharingPro.py b/module/plugins/accounts/XFileSharingPro.py
deleted file mode 100644
index 1696042d6..000000000
--- a/module/plugins/accounts/XFileSharingPro.py
+++ /dev/null
@@ -1,26 +0,0 @@
-# -*- coding: utf-8 -*-
-
-from module.plugins.internal.XFSAccount import XFSAccount
-
-
-class XFileSharing(XFSAccount):
- __name__ = "XFileSharing"
- __type__ = "account"
- __version__ = "0.11"
- __status__ = "testing"
-
- __description__ = """XFileSharing multi-purpose account plugin"""
- __license__ = "GPLv3"
- __authors__ = [("Walter Purcaro", "vuolter@gmail.com")]
-
-
- PLUGIN_DOMAIN = None
-
-
- def signin(self, user, password, data):
- try:
- return super(XFileSharing, self).signin(user, password, data)
-
- except Fail:
- self.PLUGIN_URL = self.PLUGIN_URL.replace("www.", "")
- return super(XFileSharing, self).signin(user, password, data)