diff options
author | Walter Purcaro <vuolter@users.noreply.github.com> | 2015-10-23 03:03:42 +0200 |
---|---|---|
committer | Walter Purcaro <vuolter@users.noreply.github.com> | 2015-10-23 03:03:42 +0200 |
commit | eca1d95f5add1cc3148a282a4dae61077109ed01 (patch) | |
tree | 12eed69533360b055801d4dd1ee275be0418d5ff /module/plugins/accounts | |
parent | [utils] Improve method html_unescape (diff) | |
download | pyload-eca1d95f5add1cc3148a282a4dae61077109ed01.tar.xz |
Rewrite XFileSharing
Diffstat (limited to 'module/plugins/accounts')
-rw-r--r-- | module/plugins/accounts/XFileSharingPro.py | 26 |
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) |