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
This commit is contained in:
Lance Bragstad 2018-08-22 13:29:36 +00:00
parent 6a7220a754
commit d3d618f699
1 changed files with 1 additions and 1 deletions

View File

@ -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.")