summaryrefslogtreecommitdiffstats
path: root/module/plugins/accounts/OverLoadMe.py
diff options
context:
space:
mode:
Diffstat (limited to 'module/plugins/accounts/OverLoadMe.py')
-rw-r--r--module/plugins/accounts/OverLoadMe.py10
1 files changed, 5 insertions, 5 deletions
diff --git a/module/plugins/accounts/OverLoadMe.py b/module/plugins/accounts/OverLoadMe.py
index 898c122cd..d47a579f2 100644
--- a/module/plugins/accounts/OverLoadMe.py
+++ b/module/plugins/accounts/OverLoadMe.py
@@ -7,21 +7,21 @@ from module.common.json_layer import json_loads
class OverLoadMe(Account):
__name__ = "OverLoadMe"
__type__ = "account"
- __version__ = "0.05"
+ __version__ = "0.06"
__description__ = """Over-Load.me account plugin"""
__license__ = "GPLv3"
__authors__ = [("marley", "marley@over-load.me")]
- def loadAccountInfo(self, user, req):
- data = self.getAccountData(user)
+ def load_account_info(self, user, req):
+ data = self.get_account_data(user)
html = self.load("https://api.over-load.me/account.php",
get={'user': user,
'auth': data['password']}, req=req).strip()
data = json_loads(html)
- self.logDebug(data)
+ self.log_debug(data)
#: Check for premium
if data['membership'] == "Free":
@@ -38,4 +38,4 @@ class OverLoadMe(Account):
data = json_loads(jsondata)
if data['err'] == 1:
- self.wrongPassword()
+ self.wrong_password()