stefankoegl / django-couchdb-utils

CouchDB backends for Django -- run your Django applications without a relational database

Home Page:http://groups.google.com/group/django-couchdb-utils

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

bundle crash with django1.4

cckrause opened this issue · comments

The first issue i found with django 1.4 was in the used function "get_hexdigits" in the User Document, it was dropped in the current stable release (wtf??)...

discussed on stackoverflow also: http://stackoverflow.com/questions/9324290/importerror-cannot-import-name-get-hexdigest

I already fixed that by using the new functionality "make_password" from the hasher module

from django.contrib.auth.hashers import make_password, check_password, UNUSABLE_PASSWORD.

I fixed this issue... if wanted i will upload my changeset and trigger the pull request.

cheers!

the function name was "get_hexdigest" not "get_hexdigits" .. sorry for that.

I fixed this issue... if wanted i will upload my changeset and trigger the pull request.

Yes, that would be very much appreciated. If you can come up with a backwards-compatible version that would be even better.

Thanks in advance!

Ok checkout my changeset!

Greetz

merged, thanks!