From 2eb492ba6010b71b81119c5bbf1763ce9ff984d3 Mon Sep 17 00:00:00 2001 From: Adrian Holovaty Date: Sat, 8 Jul 2006 14:14:28 +0000 Subject: [PATCH] Fixed django.utils.httpwrappers call in docs/outputting_pdf.txt git-svn-id: http://code.djangoproject.com/svn/django/trunk@3299 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- docs/outputting_pdf.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/outputting_pdf.txt b/docs/outputting_pdf.txt index a58cf2c217..edd34aca24 100644 --- a/docs/outputting_pdf.txt +++ b/docs/outputting_pdf.txt @@ -110,7 +110,7 @@ efficient. Here's the above "Hello World" example rewritten to use from cStringIO import StringIO from reportlab.pdfgen import canvas - from django.utils.httpwrappers import HttpResponse + from django.http import HttpResponse def some_view(request): # Create the HttpResponse object with the appropriate PDF headers.