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.py10
1 files changed, 5 insertions, 5 deletions
diff --git a/module/plugins/accounts/XFileSharingPro.py b/module/plugins/accounts/XFileSharingPro.py
index 354fc6446..1696042d6 100644
--- a/module/plugins/accounts/XFileSharingPro.py
+++ b/module/plugins/accounts/XFileSharingPro.py
@@ -3,13 +3,13 @@
from module.plugins.internal.XFSAccount import XFSAccount
-class XFileSharingPro(XFSAccount):
- __name__ = "XFileSharingPro"
+class XFileSharing(XFSAccount):
+ __name__ = "XFileSharing"
__type__ = "account"
__version__ = "0.11"
__status__ = "testing"
- __description__ = """XFileSharingPro multi-purpose account plugin"""
+ __description__ = """XFileSharing multi-purpose account plugin"""
__license__ = "GPLv3"
__authors__ = [("Walter Purcaro", "vuolter@gmail.com")]
@@ -19,8 +19,8 @@ class XFileSharingPro(XFSAccount):
def signin(self, user, password, data):
try:
- return super(XFileSharingPro, self).signin(user, password, data)
+ return super(XFileSharing, self).signin(user, password, data)
except Fail:
self.PLUGIN_URL = self.PLUGIN_URL.replace("www.", "")
- return super(XFileSharingPro, self).signin(user, password, data)
+ return super(XFileSharing, self).signin(user, password, data)