1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2024-09-14 20:13:21 +02:00

fix typo in constants.py (#48877)

* CONTROLER_LANG => CONTROLLER_LANG
This commit is contained in:
Lukas Grossar 2018-11-20 21:20:03 +01:00 committed by Brian Coca
parent cebe64ac0c
commit ba8a05daab

View file

@ -96,7 +96,7 @@ BECOME_MISSING_STRINGS = {
} # FIXME: deal with i18n
BLACKLIST_EXTS = ('.pyc', '.pyo', '.swp', '.bak', '~', '.rpm', '.md', '.txt', '.rst')
BOOL_TRUE = BOOLEANS_TRUE
CONTROLER_LANG = os.getenv('LANG', 'en_US.UTF-8')
CONTROLLER_LANG = os.getenv('LANG', 'en_US.UTF-8')
DEFAULT_BECOME_PASS = None
DEFAULT_PASSWORD_CHARS = to_text(ascii_letters + digits + ".,:-_", errors='strict') # characters included in auto-generated passwords
DEFAULT_SUDO_PASS = None