summaryrefslogtreecommitdiff
path: root/src/zope/i18n/config.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/zope/i18n/config.py')
-rw-r--r--src/zope/i18n/config.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/zope/i18n/config.py b/src/zope/i18n/config.py
index b0068c5..ce94ded 100644
--- a/src/zope/i18n/config.py
+++ b/src/zope/i18n/config.py
@@ -4,9 +4,10 @@ import os
#: is imported to determine the value of `COMPILE_MO_FILES`.
#: Simply set this to a non-empty string to make it True.
COMPILE_MO_FILES_KEY = 'zope_i18n_compile_mo_files'
+COMPILE_MO_FILES_UNSET = "__unset__"
#: Whether or not the ZCML directives will attempt to compile
#: translation files. Defaults to False.
-COMPILE_MO_FILES = os.environ.get(COMPILE_MO_FILES_KEY, False)
+COMPILE_MO_FILES = COMPILE_MO_FILES_UNSET
#: The environment variable that is consulted when this module
#: is imported to determine the value of `ALLOWED_LANGUAGES`.