From ac561772ea04ba8a473a3f287eccd0929d5e7aea Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Zolt=C3=A1n=20M=C3=BCllner?= Date: Mon, 8 Aug 2016 16:18:50 +0200 Subject: [PATCH] Revert "Reset all locale environment variables before running svn commands" (#4358) * Revert "Reset all locale environment variables before running svn commands" This reverts commit 99456fbc9851209f4482cdf6c246806ba1e9fbff. * Reset locale environment variables before running svn commands --- lib/ansible/modules/source_control/subversion.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/ansible/modules/source_control/subversion.py b/lib/ansible/modules/source_control/subversion.py index 7315aa1e378..1f52a2925ed 100644 --- a/lib/ansible/modules/source_control/subversion.py +++ b/lib/ansible/modules/source_control/subversion.py @@ -219,7 +219,7 @@ def main(): # We screenscrape a huge amount of svn commands so use C locale anytime we # call run_command() - module.run_command_environ_update = dict(LANG='C', LC_ALL='C', LC_MESSAGES='C', LC_CTYPE='C') + module.run_command_environ_update = dict(LANG='C', LC_MESSAGES='C') svn = Subversion(module, dest, repo, revision, username, password, svn_path)