summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--settings.py.example2
-rw-r--r--urls.py1
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".
diff --git a/urls.py b/urls.py
index 8644a5d..84a7e13 100644
--- a/urls.py
+++ b/urls.py
@@ -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('',