Open Alcolo47 opened 7 years ago
I solved it in this PR: https://github.com/pinax/django-user-accounts/pull/242
can #242 be merged pinax?
I'm still getting this error. Any idea when this will be merged? Thanks.
Having this problem in pinax-stripe
I fixed this locally adding this to my settings.py
def ACCOUNT_DELETION_MARK_CALLBACK(account_deletion):
from account.hooks import hookset
hookset.account_delete_expunge(account_deletion)
The above temp-fix by @xmnlab works for me (django-user-accounts 2.0.3
).
In account 2.0.0: After confirming account deletion (account.DeleteView.post) the following exception is raised:
After a quick search I found only one occurrence of DELETION_MARK_CALLBACK' in the sources.
In the documentation we can read:
This look like a deprecated settings...