Commit f5628d79 authored by Paul Brown's avatar Paul Brown Committed by GitHub

Merge pull request #1508 from lambdaq/master

clean() data in filters during get_list for pymongo
parents ac69d0f0 c912c706
......@@ -238,7 +238,7 @@ class ModelView(BaseModelView):
for flt, flt_name, value in filters:
f = self._filters[flt]
data = f.apply(data, value)
data = f.apply(data, f.clean(value))
if data:
if len(data) == 1:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment