[mod] external_bang.py: always read bangs.json with a UTF-8 file.

This commit is contained in:
Dalf 2020-07-11 12:23:08 +02:00
parent f9faafa896
commit 718715180d
1 changed files with 1 additions and 1 deletions

View File

@ -9,7 +9,7 @@ from searx import searx_dir
# NOTE only use the get_bang_url
bangs_data = {}
with open(join(searx_dir, 'data/bangs.json')) as json_file:
with open(join(searx_dir, 'data/bangs.json'), encoding='utf-8') as json_file:
for bang in json.load(json_file)['bang']:
for trigger in bang["triggers"]:
bangs_data[trigger] = {x: y for x, y in bang.items() if x != "triggers"}