0
0
mirror of https://github.com/wagtail/wagtail.git synced 2024-12-01 11:41:20 +01:00

Merge branch 'es-fix' of https://github.com/kaedroho/wagtail into kaedroho-es-fix

Conflicts:
	wagtail/wagtailsearch/backends/elasticsearch.py
This commit is contained in:
Matt Westcott 2014-10-01 16:27:26 +01:00
commit b295ba47f6

View File

@ -206,7 +206,7 @@ class ElasticSearchQuery(object):
if lookup == 'in':
return {
'terms': {
field_index_name: value,
field_index_name: list(value),
}
}