summaryrefslogtreecommitdiff
path: root/tests/i18n
diff options
context:
space:
mode:
authorJacob Walls <jacobtylerwalls@gmail.com>2021-06-16 10:24:53 -0400
committerMariusz Felisiak <felisiak.mariusz@gmail.com>2021-06-21 21:23:59 +0200
commit501a3714114b9c72e7dc4d8add76663bb8c83e3a (patch)
tree6f832383a2b7d3a254764e67f89269b6b2e55251 /tests/i18n
parent4659a790cf5d0036c3c7488877b4365d948ccb01 (diff)
downloaddjango-501a3714114b9c72e7dc4d8add76663bb8c83e3a.tar.gz
Fixed typo in makemessages error message.
Diffstat (limited to 'tests/i18n')
-rw-r--r--tests/i18n/test_extraction.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/i18n/test_extraction.py b/tests/i18n/test_extraction.py
index 94d92ca93f..d6f0e861b0 100644
--- a/tests/i18n/test_extraction.py
+++ b/tests/i18n/test_extraction.py
@@ -760,8 +760,8 @@ class CustomLayoutExtractionTests(ExtractorTests):
def test_no_locale_raises(self):
msg = (
"Unable to find a locale path to store translations for file "
- "__init__.py. Make sure the 'locale' directory exist in an app or "
- "LOCALE_PATHS setting is set."
+ "__init__.py. Make sure the 'locale' directory exists in an app "
+ "or LOCALE_PATHS setting is set."
)
with self.assertRaisesMessage(management.CommandError, msg):
management.call_command('makemessages', locale=[LOCALE], verbosity=0)