django-uploadify
django-uploadify copied to clipboard
Django import error - no module named django.conf.urls.defaults
I found this error while running django 1.6. This error occurs because django.conf.urls.defaults has been removed in Django 1.6. It can be fixed by changing the import to
from django.conf.urls import patterns, url, include
I'm going to send a fix for this. Thanks for reporting! Sorry for taking so long for answer, I've been pretty busy and was having time for nothing. ><
2014-04-05 4:04 GMT-03:00 mayankgautam [email protected]:
I found this error while running django 1.6. This error occurs because django.conf.urls.defaults has been removed in Django 1.6. It can be fixed by changing the import to
from django.conf.urls import patterns, url, include
Reply to this email directly or view it on GitHubhttps://github.com/tstone/django-uploadify/issues/13 .
I know I took way too long, but I sent a pull request with the fix. ;)