Fix error message to exactly match current output

This commit is contained in:
Joseph Schorr 2015-03-26 13:22:16 -04:00
parent e4b659f107
commit d23bb6616d

View file

@ -161,7 +161,7 @@ class UserAuthentication(object):
if result:
return (result, '')
else:
return (result, 'Invalid password')
return (result, 'Invalid password.')
def __getattr__(self, name):