Chromium Code Reviews| Index: dart/tools/utils.py |
| =================================================================== |
| --- dart/tools/utils.py (revision 24061) |
| +++ dart/tools/utils.py (working copy) |
| @@ -240,7 +240,7 @@ |
| def GetSVNRevision(): |
| p = subprocess.Popen(['svn', 'info'], stdout = subprocess.PIPE, |
| - stderr = subprocess.STDOUT, shell=IsWindows()) |
| + stderr = subprocess.STDOUT, shell=IsWindows(), env = {'LC_MESSAGES' : 'en_GB'}) |
|
kustermann
2013/06/17 06:38:56
long line
ricow1
2013/06/17 06:40:19
Done.
|
| output, not_used = p.communicate() |
| revision = ParseSvnInfoOutput(output) |
| if revision: |