summaryrefslogtreecommitdiffstats
path: root/module/plugins/accounts/FilerNet.py
diff options
context:
space:
mode:
Diffstat (limited to 'module/plugins/accounts/FilerNet.py')
-rw-r--r--module/plugins/accounts/FilerNet.py10
1 files changed, 5 insertions, 5 deletions
diff --git a/module/plugins/accounts/FilerNet.py b/module/plugins/accounts/FilerNet.py
index 9ab900831..acee71912 100644
--- a/module/plugins/accounts/FilerNet.py
+++ b/module/plugins/accounts/FilerNet.py
@@ -9,7 +9,7 @@ from module.plugins.internal.Account import Account
class FilerNet(Account):
__name__ = "FilerNet"
__type__ = "account"
- __version__ = "0.06"
+ __version__ = "0.07"
__description__ = """Filer.net account plugin"""
__license__ = "GPLv3"
@@ -22,7 +22,7 @@ class FilerNet(Account):
FREE_PATTERN = r'Account Status</th>\s*<td>\s*Free'
- def loadAccountInfo(self, user, req):
+ def load_account_info(self, user, req):
html = self.load("https://filer.net/profile", req=req)
#: Free user
@@ -34,11 +34,11 @@ class FilerNet(Account):
if until and traffic:
validuntil = time.mktime(time.strptime(until.group(1), "%d.%m.%Y %H:%M:%S"))
- trafficleft = self.parseTraffic(traffic.group(1))
+ trafficleft = self.parse_traffic(traffic.group(1))
return {"premium": True, "validuntil": validuntil, "trafficleft": trafficleft}
else:
- self.logError(_("Unable to retrieve account information"))
+ self.log_error(_("Unable to retrieve account information"))
return {"premium": False, "validuntil": None, "trafficleft": None}
@@ -55,4 +55,4 @@ class FilerNet(Account):
"_target_path": "https://filer.net/"}, req=req)
if 'Logout' not in html:
- self.wrongPassword()
+ self.wrong_password()