gregmuellegger/django-autofixture

Issues with Django 1.6

Closed this issue · 1 comments

from django.contrib.auth.models import UNUSABLE_PASSWORD

no longer exists in Django 1.6, causing django-autofixture to crash.

There appears to be a new alternative

from django.contrib.auth.hashers import UNUSABLE_PASSWORD_PREFIX

There is also set_unusable_password() function on the auth model as well which is probably a better substitute.

Mat

Thanks for the report. Django 1.6 support will ship later today.