From 1b745be5a1c16d6f807113013ff6234e74f1b6ec Mon Sep 17 00:00:00 2001 From: Malcolm Tredinnick Date: Fri, 14 Sep 2007 05:39:59 +0000 Subject: [PATCH] Fixed a typo from [6164]. git-svn-id: http://code.djangoproject.com/svn/django/trunk@6167 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- django/http/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/django/http/__init__.py b/django/http/__init__.py index 4421573258..2b68a6243a 100644 --- a/django/http/__init__.py +++ b/django/http/__init__.py @@ -54,7 +54,7 @@ class HttpRequest(object): ``request.get_full_path()``. """ if not location: - location = request.get_full_path() + location = self.get_full_path() if not ':' in location: current_uri = '%s://%s%s' % (self.is_secure() and 'https' or 'http', get_host(self), self.path)