Deprecation Warning
Opened this issue · 1 comments
Deleted user commented
I'm getting:
"DeprecationWarning: django.conf.urls.defaults is deprecated; use django.conf.urls instead"
The file using that is dajaxice/urls.py
Greetings.
moreloci commented
You can fix it like they did in the Raven app:
try:
from django.conf.urls import patterns, url
except ImportError:
# for Django version less then 1.4
from django.conf.urls.defaults import patterns, url # NOQA