Tuesday, 6 August 2013

django packages app names clash

django packages app names clash

My django project has a local app named 'accounts' that manages User
accounts. It has live and populated db tables, and also has a urls.py
entry:
(r'^accounts/', include('accounts.urls')),
Now, I want to use django-allauth to support OpenId. However, I noticed
that there is an app name clash since allauth also uses accounts to create
db tables and asks urls.py to contain:
(r'^accounts/', include('allauth.urls')),
What is the best way to solve this app name conflict?

No comments:

Post a Comment