summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexandre Flament <alex@al-f.net>2021-01-24 14:25:27 +0100
committerAlexandre Flament <alex@al-f.net>2021-01-24 14:25:27 +0100
commit6047087aacdfd3b574c97c6f7f5f25ade683e48e (patch)
tree3af49faa3fcaef0aed44c34b93aa985b69e77b27
parent3330cf4a4672906c79e9e24d0cbcd18ca8674fa1 (diff)
downloadsearxng-6047087aacdfd3b574c97c6f7f5f25ade683e48e.tar.gz
searxng-6047087aacdfd3b574c97c6f7f5f25ade683e48e.zip
[mod] utils/fetch_languages.py: write files at the right location
-rw-r--r--utils/fetch_languages.py7
1 files changed, 4 insertions, 3 deletions
diff --git a/utils/fetch_languages.py b/utils/fetch_languages.py
index 1f8dc7786..453693136 100644
--- a/utils/fetch_languages.py
+++ b/utils/fetch_languages.py
@@ -6,18 +6,19 @@
# are written in current directory to avoid overwriting in case something goes wrong.
import json
+from pathlib import Path
from pprint import pformat
from sys import path
from babel import Locale, UnknownLocaleError
from babel.languages import get_global
path.append('../searx') # noqa
-from searx import settings
+from searx import settings, searx_dir
from searx.engines import initialize_engines, engines
# Output files.
-engines_languages_file = 'engines_languages.json'
-languages_file = 'languages.py'
+engines_languages_file = Path(searx_dir) / 'data' / 'engines_languages.json'
+languages_file = Path(searx_dir) / 'languages.py'
# Fetchs supported languages for each engine and writes json file with those.