diff options
| author | Joseph Kocherhans <joseph@jkocherhans.com> | 2006-01-11 22:15:07 +0000 |
|---|---|---|
| committer | Joseph Kocherhans <joseph@jkocherhans.com> | 2006-01-11 22:15:07 +0000 |
| commit | 02f03e7b93e4c470a107be277be0640893a7998c (patch) | |
| tree | d48ed24f19c0d8a66529ab809f6a9d8fea5538e4 /docs/tutorial04.txt | |
| parent | 5aa3c38b1b6d6a55dd898c0936b867a5419476f9 (diff) | |
magic-removal: Oops.. this should have been committed in [1916].
git-svn-id: http://code.djangoproject.com/svn/django/branches/magic-removal@1920 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'docs/tutorial04.txt')
| -rw-r--r-- | docs/tutorial04.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/tutorial04.txt b/docs/tutorial04.txt index f6a0abb6d1..5f6537cdc0 100644 --- a/docs/tutorial04.txt +++ b/docs/tutorial04.txt @@ -50,7 +50,7 @@ So let's create a ``vote()`` function in ``myproject/polls/views.py``:: from django.core.extensions import get_object_or_404, render_to_response from django.models.polls import choices, polls - from django.utils.httpwrappers import HttpResponseRedirect + from django.http import HttpResponseRedirect def vote(request, poll_id): p = get_object_or_404(polls, pk=poll_id) |
