summaryrefslogtreecommitdiffstats
path: root/pyload/plugins/account/AlldebridCom.py
diff options
context:
space:
mode:
Diffstat (limited to 'pyload/plugins/account/AlldebridCom.py')
-rw-r--r--pyload/plugins/account/AlldebridCom.py8
1 files changed, 5 insertions, 3 deletions
diff --git a/pyload/plugins/account/AlldebridCom.py b/pyload/plugins/account/AlldebridCom.py
index 7183b8e6e..daf844a40 100644
--- a/pyload/plugins/account/AlldebridCom.py
+++ b/pyload/plugins/account/AlldebridCom.py
@@ -12,12 +12,13 @@ from pyload.plugins.base.Account import Account
class AlldebridCom(Account):
- __name__ = "AlldebridCom"
- __type__ = "account"
+ __name__ = "AlldebridCom"
+ __type__ = "account"
__version__ = "0.22"
__description__ = """AllDebrid.com account plugin"""
- __authors__ = [("Andy Voigt", "spamsales@online.de")]
+ __license__ = "GPLv3"
+ __authors__ = [("Andy Voigt", "spamsales@online.de")]
def loadAccountInfo(self, user, req):
@@ -43,6 +44,7 @@ class AlldebridCom(Account):
account_info = {"validuntil": exp_time, "trafficleft": -1}
return account_info
+
def login(self, user, data, req):
urlparams = urlencode({'action': 'login', 'login_login': user, 'login_password': data['password']})
page = req.load("http://www.alldebrid.com/register/?%s" % urlparams)