From 02f03e7b93e4c470a107be277be0640893a7998c Mon Sep 17 00:00:00 2001 From: Joseph Kocherhans Date: Wed, 11 Jan 2006 22:15:07 +0000 Subject: [PATCH] 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 --- docs/tutorial04.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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)