--
Ticket URL: <https://code.djangoproject.com/ticket/33687>
Django <https://code.djangoproject.com/>
The Web framework for perfectionists with deadlines.
* status: new => closed
* resolution: => wontfix
Comment:
Thanks for this ticket, however the `changepassword` command was never
intended to cover all available options. You can create a custom command
in your project or use a small standalone script instead:
{{{
UserModel = get_user_model()
user =
UserModel._default_manager.db_manager('default').get(username=username)
user.set_password(new_password)
user.set_unusable_password()
user.save()
}}}
--
Ticket URL: <https://code.djangoproject.com/ticket/33687#comment:1>