From 3e2fa60df2d46fc9216f3456e59ed5a4905ae072 Mon Sep 17 00:00:00 2001 From: Adrian Holovaty Date: Mon, 6 Aug 2007 05:34:45 +0000 Subject: [PATCH] Fixed #4985 -- Clarified location of HttpResponse in docs/request_response.txt. Thanks for raising the issue, rainer.mansfeld@romulo.de git-svn-id: http://code.djangoproject.com/svn/django/trunk@5817 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- docs/request_response.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/request_response.txt b/docs/request_response.txt index 0b985d563b..a17a60ff17 100644 --- a/docs/request_response.txt +++ b/docs/request_response.txt @@ -297,7 +297,7 @@ In contrast to ``HttpRequest`` objects, which are created automatically by Django, ``HttpResponse`` objects are your responsibility. Each view you write is responsible for instantiating, populating and returning an ``HttpResponse``. -The ``HttpResponse`` class lives at ``django.http.HttpResponse``. +The ``HttpResponse`` class lives in the ``django.http`` module. Usage -----