python - How to set "simple" password in Django 1.9 -
python manage.py createsuperuser --username admin
after prompts password , when enter "admin" got following message:
this password short. must contain @ least 8 characters. password common.
i haven't seen on earlier versions of django.
tune auth_password_validators
setting removing django.contrib.auth.password_validation.commonpasswordvalidator
out there.
password validation new feature introduced in django 1.9.
Comments
Post a Comment