﻿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
19113	usermanager in new user auth produces error	anonymous	nobody	"def create_superuser(self, username, date_of_birth, password):
        """"""
        Creates and saves a superuser with the given email, date of
        birth and password.
        """"""
        user = self.create_user(username,
            password=password,
            date_of_birth=date_of_birth
        )
        user.is_admin = True
        user.save(using=self._db)
        return user

The above code is example but in the model it specifies only email and not username, and so produces a type error - TypeError: create_superuser() got an unexpected keyword argument 'username'

This is for version 1.5 and not 1.4 as it says below."	Cleanup/optimization	closed	Documentation	1.4	Normal	invalid			Unreviewed	0	0	0	0	0	0
