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

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
This commit is contained in:
Zoltán Müllner 2016-08-08 16:18:50 +02:00 committed by Matt Clay
parent cd3c454917
commit ac561772ea

View file

@ -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)