What steps will reproduce the problem?
1. Use Django after revision 8202
What is the expected output? What do you see instead?
File "E:\Software\workspace\django-pagination\pagination\middleware.py",
line 8, in process_request
request.page = int(request['page'])
TypeError: 'WSGIRequest' object is unsubscriptable
What version of the product are you using? On what operating system?
django-pagination r23
Please provide any additional information below.
Since [8202], to access data in GET or POST, you need to do
request.REQUEST['myvar'] instead of request['myvar']
http://code.djangoproject.com/changeset/8202
Patch attached.
Original issue reported on code.google.com by jpha...@gmail.com on 4 Aug 2008 at 12:16
Original issue reported on code.google.com by
jpha...@gmail.com
on 4 Aug 2008 at 12:16Attachments: