Merge branch 'Zharktas-fix_unicode_encode_error'
This commit is contained in:
commit
28c5c68c36
|
@ -92,7 +92,7 @@ class Harvest(p.SingletonPlugin, DefaultDatasetForm, DefaultTranslation):
|
||||||
|
|
||||||
fq = search_params.get('fq', '')
|
fq = search_params.get('fq', '')
|
||||||
if 'dataset_type:harvest' not in fq:
|
if 'dataset_type:harvest' not in fq:
|
||||||
fq = "{0} -dataset_type:harvest".format(search_params.get('fq', ''))
|
fq = u"{0} -dataset_type:harvest".format(search_params.get('fq', ''))
|
||||||
search_params.update({'fq': fq})
|
search_params.update({'fq': fq})
|
||||||
|
|
||||||
return search_params
|
return search_params
|
||||||
|
|
Loading…
Reference in New Issue