summaryrefslogtreecommitdiffstats
path: root/module/plugins/accounts
diff options
context:
space:
mode:
authorGravatar Walter Purcaro <vuolter@users.noreply.github.com> 2015-10-19 04:48:07 +0200
committerGravatar Walter Purcaro <vuolter@users.noreply.github.com> 2015-10-19 04:48:07 +0200
commitffd38f027ed103f7b39ec78c6af0d182774950a4 (patch)
treee6d88b064a38bb44932674f32ac602efc786468b /module/plugins/accounts
parentMerge pull request #2054 from GammaC0de/patch-1 (diff)
downloadpyload-ffd38f027ed103f7b39ec78c6af0d182774950a4.tar.xz
Spare fixes
Diffstat (limited to 'module/plugins/accounts')
-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)