From ba8a05daab3b509f0f0e89c02f079f60e0dbdc4b Mon Sep 17 00:00:00 2001 From: Lukas Grossar Date: Tue, 20 Nov 2018 21:20:03 +0100 Subject: [PATCH] fix typo in constants.py (#48877) * CONTROLER_LANG => CONTROLLER_LANG --- lib/ansible/constants.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/ansible/constants.py b/lib/ansible/constants.py index 79fe78c640..fbe884f284 100644 --- a/lib/ansible/constants.py +++ b/lib/ansible/constants.py @@ -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