summary |
shortlog |
log |
commit | commitdiff |
tree
raw |
patch |
inline | side by side (from parent 1:
c565d46)
git-svn-id: https://django-pagination.googlecode.com/svn/trunk@24
7f1efe38-554e-0410-b69d-
834cb44da2d5
"""
def process_request(self, request):
try:
"""
def process_request(self, request):
try:
- request.page = int(request['page'])
+ request.page = int(request.REQUEST['page'])
except (KeyError, ValueError):
request.page = 1
\ No newline at end of file
except (KeyError, ValueError):
request.page = 1
\ No newline at end of file