diff options
| author | Alex Gaynor <alex.gaynor@gmail.com> | 2012-09-07 09:43:05 -0700 |
|---|---|---|
| committer | Alex Gaynor <alex.gaynor@gmail.com> | 2012-09-07 09:43:05 -0700 |
| commit | 4321ee25c5c490b94fa0c6e2da5e0b3df215ff81 (patch) | |
| tree | 53ed791c921e10397f9efa2027ba844c8e986e54 | |
| parent | e1a37d55374a399dee9c302419fbe9badd92abb0 (diff) | |
| parent | 07b3d39d101ff0465a5084266745b3db143552e9 (diff) | |
Merge pull request #336 from dlo/tickets/18915
remove unused import in decoupling URLs tutorial, closes #18915
| -rw-r--r-- | docs/intro/tutorial03.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/intro/tutorial03.txt b/docs/intro/tutorial03.txt index 6d4fb7eef1..2430bc3a2d 100644 --- a/docs/intro/tutorial03.txt +++ b/docs/intro/tutorial03.txt @@ -517,7 +517,7 @@ URLconf by removing the leading "polls/" from each line, and removing the lines registering the admin site. Your ``polls/urls.py`` file should now look like this:: - from django.conf.urls import patterns, include, url + from django.conf.urls import patterns, url urlpatterns = patterns('polls.views', url(r'^$', 'index'), |
