Django

Code

Changeset 6167

Show
Ignore:
Timestamp:
09/14/07 00:39:59 (1 year ago)
Author:
mtredinnick
Message:

Fixed a typo from [6164].

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • django/trunk/django/http/__init__.py

    r6166 r6167  
    5555        """ 
    5656        if not location: 
    57             location = request.get_full_path() 
     57            location = self.get_full_path() 
    5858        if not ':' in location: 
    5959            current_uri = '%s://%s%s' % (self.is_secure() and 'https' or 'http',