﻿id	summary	reporter	owner	description	type	status	component	version	severity	resolution	keywords	cc	stage	has_patch	needs_docs	needs_tests	needs_better_patch	easy	ui_ux
25457	createsuperuser password error message has incorrect format	Tzu-ping Chung	nobody	"{{{
$ ./manage.py createsuperuser
Username (leave blank to use 'uranusjr'): 
Email address: 
Password: 
Password (again): 
This password is too short. It must contain at least 8 characters., This password is too common.
}}}

The problem is likely in “django/contrib/auth/management/commands/createsuperuser.py”, where error message is currently formatted like this:

{{{
try:
    validate_password(password2, self.UserModel(**fake_user_data))
except exceptions.ValidationError as err:
    self.stderr.write(', '.join(err.messages))
    password = None
}}}

So either the exception message needs to be re-formatted to not using a complete sentence, or the messages need to be joined without the comma."	Bug	closed	contrib.auth	1.9a1	Normal	fixed	1.9		Accepted	1	0	0	0	1	1
