
Here again I am trying to upgrade my application from Django1.5 to Django1.6 which I documented here.
The bump I found in my code was the url import in urls.py
Before we import urls like this :
from django.conf.urls.defaults import *
In Django1.5 there was warning that this will be deprecated. Now in Django1.6 , the app wont start.
Instead we must use this for the import :
from django.conf.urls import *
The package moved to other place....