Opened 18 years ago

Closed 18 years ago

Last modified 18 years ago

#1494 closed defect (fixed)

global name 'HttpResponseRedirect' is not defined

Reported by: Alef Owned by: Adrian Holovaty
Component: Core (Other) Version:
Severity: normal Keywords:
Cc: Triage Stage: Unreviewed
Has patch: no Needs documentation: no
Needs tests: no Patch needs improvement: no
Easy pickings: no UI/UX: no

Description

In magic-removal branch in file:

django/contrib/auth/decorators.py

HttpResponseRedirect is used but never imported. The solution is simply:

from django.http import HttpResponseRedirect

Change History (1)

comment:1 by Adrian Holovaty, 18 years ago

Resolution: fixed
Status: newclosed

(In [2512]) magic-removal: Fixed #1494 -- Added missing import to django.contirb.auth.decorators

Note: See TracTickets for help on using tickets.
Back to Top