From d3d618f6994bc1d5dd23ed7b45b7b6fea5d7ff14 Mon Sep 17 00:00:00 2001 From: Lance Bragstad Date: Wed, 22 Aug 2018 13:29:36 +0000 Subject: [PATCH] Trivial: Add missing space in exception The PasswordHistoryValidationError was missing a space, causing two words to be smushed together when rendering the exception. Change-Id: Ibfafd5e6a6e1dca1029ff8a785d4d169fd235d82 --- keystone/exception.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/keystone/exception.py b/keystone/exception.py index b40c7b1cdb..d5d27d97cc 100644 --- a/keystone/exception.py +++ b/keystone/exception.py @@ -105,7 +105,7 @@ class PasswordRequirementsValidationError(PasswordValidationError): class PasswordHistoryValidationError(PasswordValidationError): message_format = _("The new password cannot be identical to a " - "previous password. The total number which" + "previous password. The total number which " "includes the new password must be unique is " "%(unique_count)s.")