http://docs.djangoproject.com/en/dev/intro/tutorial03/#intro-tutorial03 The "Decoupling the URLconfs" section in the end says that moving mysite/urls.py to mysite/polls/urls.py and making the necessary changes decouples the polls app completely from the containing project. But it isn't so. urlpatterns = patterns ('mysite.polls.views', ... in mysite/polls/urls.py still refers to the "mysite" project, so I think the code in the tutorial should be changed to urlpatterns = patterns('polls.views', ... to decouple the app completely.
--~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-users@googlegroups.com To unsubscribe from this group, send email to django-users+unsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/django-users?hl=en -~----------~----~----~----~------~----~------~--~---