Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Import was failing with List has not attrinute .fromUnicode
  • Loading branch information
gogobd committed Jul 17, 2017
1 parent 7f26e54 commit aea9427
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions eea/facetednavigation/criteria/handler.py
Expand Up @@ -153,6 +153,8 @@ def edit(self, cid, **properties):
for key, value in properties.items():
if key not in schema:
continue
if not value:
continue
if isinstance(value, (list, tuple)):
value_type = schema[key].value_type
value = [fix_string(x) for x in value]
Expand Down

0 comments on commit aea9427

Please sign in to comment.