﻿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
19725	`createsuperuser` command fails with custom User model	michisu	nobody	"If using a custom User model with non-ascii field label, then `createsuperuser` command fails.

{{{
class MyUser(AbstractBaseUser):

    email = models.EmailField(
        u'メールアドレス', max_length=255, unique=True, db_index=True)
    # ...
}}}

{{{
$ python manage.py createsuperuser
UnicodeEncodeError: 'ascii' codec can't encode characters in position 0-6: ordinal not in range(128)
}}}"	Bug	closed	contrib.auth	1.5-beta-1	Release blocker	fixed			Accepted	0	0	0	0	1	0
