Fix typo
This commit is contained in:
parent
066637f496
commit
1245385808
1 changed files with 1 additions and 1 deletions
|
@ -452,7 +452,7 @@ class UserAuthentication(object):
|
||||||
if decrypted is None:
|
if decrypted is None:
|
||||||
# This is a normal password.
|
# This is a normal password.
|
||||||
if features.REQUIRE_ENCRYPTED_BASIC_AUTH:
|
if features.REQUIRE_ENCRYPTED_BASIC_AUTH:
|
||||||
msg = ('Client login with unecrypted passwords is disabled. Please generate an ' +
|
msg = ('Client login with unencrypted passwords is disabled. Please generate an ' +
|
||||||
'encrypted password in the user admin panel for use here.')
|
'encrypted password in the user admin panel for use here.')
|
||||||
return (None, msg)
|
return (None, msg)
|
||||||
else:
|
else:
|
||||||
|
|
Reference in a new issue