diff options
author | coderick14 | 2017-06-25 19:46:03 +0530 |
---|---|---|
committer | coderick14 | 2017-06-25 19:46:03 +0530 |
commit | f67527fe88cd33cb1b031a05e5743f1d174b68fe (patch) | |
tree | cc87a6a0e37a2f34bea062ee3dadc99d01b8089a /account | |
parent | 294d54dac2b8715891ac32d9b93b3bfd885827f6 (diff) | |
download | SBHS-2018-Rpi-f67527fe88cd33cb1b031a05e5743f1d174b68fe.tar.gz SBHS-2018-Rpi-f67527fe88cd33cb1b031a05e5743f1d174b68fe.tar.bz2 SBHS-2018-Rpi-f67527fe88cd33cb1b031a05e5743f1d174b68fe.zip |
Fix typographical errors during documentation
Diffstat (limited to 'account')
-rw-r--r-- | account/views.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/account/views.py b/account/views.py index 4348842..51e73ff 100644 --- a/account/views.py +++ b/account/views.py @@ -135,7 +135,7 @@ def login(req): messages.add_message(req, messages.ERROR, "Invalid username or password.") return redirect(index) - is_authenticated = user.check_password(password)+ + is_authenticated = user.check_password(password) if is_authenticated: if user.is_active: |