From fbfae775970eb0b29c3ac3f79d5bcd7c9acb12fb Mon Sep 17 00:00:00 2001 From: Étienne Loks Date: Wed, 15 Feb 2012 18:50:52 +0100 Subject: Work on reorganization (refs #316) --- example_project/settings.py.example | 2 +- example_project/urls.py | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) (limited to 'example_project') diff --git a/example_project/settings.py.example b/example_project/settings.py.example index 5f993ab..2715d02 100644 --- a/example_project/settings.py.example +++ b/example_project/settings.py.example @@ -132,7 +132,7 @@ MIDDLEWARE_CLASSES = ( 'django.middleware.doc.XViewMiddleware', ) -ROOT_URLCONF = 'chimere.urls' +ROOT_URLCONF = 'example_project.urls' TEMPLATE_DIRS = [ # Put strings here, like "/home/html/django_templates" or "C:/www/django/templates". diff --git a/example_project/urls.py b/example_project/urls.py index 8644a5d..84a7e13 100644 --- a/example_project/urls.py +++ b/example_project/urls.py @@ -28,7 +28,6 @@ urlpatterns = patterns('django.views.static', (r'^%s(?P.*)' % settings.MEDIA_URL[1:], 'serve', {'document_root': settings.MEDIA_ROOT}), ) - urlpatterns += staticfiles_urlpatterns() urlpatterns += patterns('', -- cgit v1.2.3