From c4a2574b0d87ec0a86383ee8c8eca90323cff620 Mon Sep 17 00:00:00 2001 From: Joseph Schorr Date: Thu, 26 Mar 2015 16:23:28 -0400 Subject: [PATCH] Clarify unencrypted password error message --- data/users.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/data/users.py b/data/users.py index 13556a552..10c909cb8 100644 --- a/data/users.py +++ b/data/users.py @@ -202,8 +202,8 @@ class UserAuthentication(object): if decrypted is None: # This is a normal password. if features.REQUIRE_ENCRYPTED_BASIC_AUTH: - msg = ('Client login with passwords is disabled. Please generate a client token ' + - 'and use it in place of your password.') + msg = ('Client login with unecrypted passwords is disabled. Please generate an ' + + 'encrypted password in the user admin panel for use here.') return (None, msg) else: password = decrypted