diff options
Diffstat (limited to 'module/plugins/accounts/FilerNet.py')
| -rw-r--r-- | module/plugins/accounts/FilerNet.py | 11 | 
1 files changed, 6 insertions, 5 deletions
diff --git a/module/plugins/accounts/FilerNet.py b/module/plugins/accounts/FilerNet.py index acee71912..192905ebe 100644 --- a/module/plugins/accounts/FilerNet.py +++ b/module/plugins/accounts/FilerNet.py @@ -48,11 +48,12 @@ class FilerNet(Account):          token = re.search(self.TOKEN_PATTERN, html).group(1)          html = self.load("https://filer.net/login_check", -                        post={"_username"   : user, -                              "_password"   : data['password'], -                              "_remember_me": "on", -                              "_csrf_token" : token, -                              "_target_path": "https://filer.net/"}, req=req) +                         post={"_username"   : user, +                               "_password"   : data['password'], +                               "_remember_me": "on", +                               "_csrf_token" : token, +                               "_target_path": "https://filer.net/"}, +                         req=req)          if 'Logout' not in html:              self.wrong_password()  | 
