fnp
/
django-pagination.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
(from parent 1:
986c8f6
)
Merge pull request #28 from amrael/django18_2
author
Zygmunt Krynicki
<me@zygoon.pl>
Tue, 29 Dec 2015 10:05:55 +0000
(11:05 +0100)
committer
Zygmunt Krynicki
<me@zygoon.pl>
Tue, 29 Dec 2015 10:05:55 +0000
(11:05 +0100)
Suppress RemovedInDjango19Warning
linaro_django_pagination/middleware.py
patch
|
blob
|
history
diff --git
a/linaro_django_pagination/middleware.py
b/linaro_django_pagination/middleware.py
index
73d2713
..
580be43
100644
(file)
--- a/
linaro_django_pagination/middleware.py
+++ b/
linaro_django_pagination/middleware.py
@@
-35,7
+35,12
@@
def get_page(self, suffix):
integer representing the current page.
"""
try:
- return int(self.REQUEST['page%s' % suffix])
+ # REQUEST is deprecated as of Django 1.7.
+ key = 'page%s' % suffix
+ value = self.POST.get(key)
+ if value is None:
+ value = self.GET.get(key)
+ return int(value)
except (KeyError, ValueError, TypeError):
return 1