diff options
-rw-r--r-- | settings.py.example | 2 | ||||
-rw-r--r-- | urls.py | 1 |
2 files changed, 1 insertions, 2 deletions
diff --git a/settings.py.example b/settings.py.example index 5f993ab..2715d02 100644 --- a/settings.py.example +++ b/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". @@ -28,7 +28,6 @@ urlpatterns = patterns('django.views.static', (r'^%s(?P<path>.*)' % settings.MEDIA_URL[1:], 'serve', {'document_root': settings.MEDIA_ROOT}), ) - urlpatterns += staticfiles_urlpatterns() urlpatterns += patterns('', |