From 92c4874620d4ae4e785b00a4635f61f64da90f59 Mon Sep 17 00:00:00 2001 From: Adrian Vollmer Date: Wed, 2 Aug 2023 17:15:39 +0200 Subject: [PATCH] Correct a spelling error in ``sphinx.util.i18n`` (#11549) --- sphinx/util/i18n.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sphinx/util/i18n.py b/sphinx/util/i18n.py index 11cb5b64ce0..48e3f50624b 100644 --- a/sphinx/util/i18n.py +++ b/sphinx/util/i18n.py @@ -91,7 +91,7 @@ def locale_dirs(self) -> Generator[str, None, None]: if path.exists(locale_path): yield locale_dir else: - logger.verbose(__('locale_dir %s does not exists'), locale_path) + logger.verbose(__('locale_dir %s does not exist'), locale_path) @property def pofiles(self) -> Generator[tuple[str, str], None, None]: