Fix error message to exactly match current output
This commit is contained in:
parent
e4b659f107
commit
d23bb6616d
1 changed files with 1 additions and 1 deletions
|
@ -161,7 +161,7 @@ class UserAuthentication(object):
|
|||
if result:
|
||||
return (result, '')
|
||||
else:
|
||||
return (result, 'Invalid password')
|
||||
return (result, 'Invalid password.')
|
||||
|
||||
|
||||
def __getattr__(self, name):
|
||||
|
|
Reference in a new issue