We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5db491d commit befe2b0Copy full SHA for befe2b0
src/collective/collectionfilter/baseviews.py
@@ -15,7 +15,6 @@
15
from plone import api
16
from plone.api.portal import get_registry_record as getrec
17
from plone.app.uuid.utils import uuidToCatalogBrain
18
-from plone.app.uuid.utils import uuidToObject
19
from plone.i18n.normalizer.interfaces import IIDNormalizer
20
from plone.memoize import instance
21
from plone.uuid.interfaces import IUUID
@@ -339,7 +338,7 @@ def __call__(self):
339
338
340
try:
341
limit = int(self.request.get("geojson-limit"))
342
- except:
+ except Exception:
343
limit = 500
344
345
for it in locations:
0 commit comments