summaryrefslogtreecommitdiff
path: root/utils
diff options
context:
space:
mode:
authorjazzzooo <38244149+jazzzooo@users.noreply.github.com>2023-09-15 00:53:03 -0700
committerMarkus Heiser <markus.heiser@darmarIT.de>2023-09-18 16:20:27 +0200
commit223b3487c38a2390ad936943266a44da9cbb810a (patch)
tree6dde6498a4c37731427715d01b6314b09be52897 /utils
parenta9b6963971327605db1509795be7795dc7401f3f (diff)
[fix] spelling
Diffstat (limited to 'utils')
-rw-r--r--utils/build_env.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/utils/build_env.py b/utils/build_env.py
index f5c8ad97..1ef8ab70 100644
--- a/utils/build_env.py
+++ b/utils/build_env.py
@@ -10,7 +10,7 @@ from os.path import realpath, dirname, join, sep, abspath
repo_root = realpath(dirname(realpath(__file__)) + sep + '..')
sys.path.insert(0, repo_root)
-# Assure that the settings file from reposetorie's working tree is used to
+# Assure that the settings file from repository's working tree is used to
# generate the build_env, not from /etc/searxng/settings.yml.
os.environ['SEARXNG_SETTINGS_PATH'] = join(repo_root, 'etc', 'settings.yml')
@@ -38,7 +38,7 @@ brand_env = 'utils' + sep + 'brand.env'
# Some defaults in the settings.yml are taken from the environment,
# e.g. SEARXNG_BIND_ADDRESS (:py:obj:`searx.settings_defaults.SHEMA`). When the
-# 'brand.env' file is created these envirnoment variables should be unset first::
+# 'brand.env' file is created these environment variables should be unset first::
_unset = object()
for name, option in name_val: