You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Django 1.6 removes django.conf.urls.default. Fix import in urls.py to
import from django.conf.urls instead. This should be backwards
compatible down to 1.4, but won't work for 1.3.
The import in urls.py, from django.conf.urls.default import * fails in django 1.6. Replace with from django.conf.urls import patterns.
The text was updated successfully, but these errors were encountered: