| Index: tools/utils.py
|
| diff --git a/tools/utils.py b/tools/utils.py
|
| index da4266628265cd23c80aee666a4bf74577cebf2e..8346d09546c8f561856e91f463d2ede50a4fec1d 100644
|
| --- a/tools/utils.py
|
| +++ b/tools/utils.py
|
| @@ -239,9 +239,11 @@ def GetVersion():
|
| return output.strip()
|
|
|
| def GetSVNRevision():
|
| + custom_env = dict(os.environ)
|
| + custom_env['LC_MESSAGES'] = 'en_GB'
|
| p = subprocess.Popen(['svn', 'info'], stdout = subprocess.PIPE,
|
| stderr = subprocess.STDOUT, shell=IsWindows(),
|
| - env = {'LC_MESSAGES' : 'en_GB'})
|
| + env = custom_env)
|
| output, not_used = p.communicate()
|
| revision = ParseSvnInfoOutput(output)
|
| if revision:
|
|
|