forked from GithubBackups/healthchecks
Fix AttributeError in Ping admin
This commit is contained in:
parent
9a00fd9944
commit
b1ad0415da
@ -103,7 +103,7 @@ class LargeTablePaginator(Paginator):
|
|||||||
Changed to use an estimate if the estimate is greater than 10,000
|
Changed to use an estimate if the estimate is greater than 10,000
|
||||||
Returns the total number of objects, across all pages.
|
Returns the total number of objects, across all pages.
|
||||||
"""
|
"""
|
||||||
if self._count is None:
|
if not hasattr(self, "_count") or self._count is None:
|
||||||
try:
|
try:
|
||||||
estimate = 0
|
estimate = 0
|
||||||
if not self.object_list.query.where:
|
if not self.object_list.query.where:
|
||||||
|
Loading…
x
Reference in New Issue
Block a user