I had this error while importing URLs at the root level:
urlpatterns = patterns('',
url(r'^tag/', include('tag.urls')),
The file "tag / urls.py" is missing. So. There is no module named URL. A much better error message would be
Module 'urls.py' not found in app / tag
or something similar.
Robse source
share