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

subversion: use LANG=C to prevent regex failures

Fixes bug GH-5549.
This commit is contained in:
René Moser 2014-01-15 10:03:43 +01:00
parent 332d3d6a0e
commit 0f2bc0dad8

View file

@ -94,6 +94,7 @@ class Subversion(object):
def _exec(self, args): def _exec(self, args):
bits = [ bits = [
'LANG=C',
self.svn_path, self.svn_path,
'--non-interactive', '--non-interactive',
'--trust-server-cert', '--trust-server-cert',