summaryrefslogtreecommitdiff
path: root/docs/intro/overview.txt
diff options
context:
space:
mode:
Diffstat (limited to 'docs/intro/overview.txt')
-rw-r--r--docs/intro/overview.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/intro/overview.txt b/docs/intro/overview.txt
index 34572a6c80..737db21866 100644
--- a/docs/intro/overview.txt
+++ b/docs/intro/overview.txt
@@ -176,7 +176,7 @@ decouple URLs from Python code.
Here's what a URLconf might look like for the ``Reporter``/``Article``
example above::
- from django.conf.urls.defaults import *
+ from django.conf.urls import patterns, url, include
urlpatterns = patterns('',
(r'^articles/(\d{4})/$', 'news.views.year_archive'),