Ticket #242 (closed defect: fixed)
Wrong argument to HTTPException.get_response
| Reported by: | data | Owned by: | |
|---|---|---|---|
| Priority: | major | Milestone: | |
| Component: | general | Version: | dev |
| Keywords: | Cc: |
Description
In zine/application.py:1267 get_response is called with the request object. It should be called with the environ object instead:
response = e.get_response(request)
should be
response = e.get_response(request.environ)
Change History
Note: See
TracTickets for help on using
tickets.
Fixed as of commit http://dev.pocoo.org/projects/zine/changeset/1311%3Abddad78eab94