Show More
@@ -265,8 +265,8 b' class svnsubrepo(object):' | |||
|
265 | 265 | cmd = [util.shellquote(arg) for arg in cmd] |
|
266 | 266 | cmd = util.quotecommand(' '.join(cmd)) |
|
267 | 267 | env = dict(os.environ) |
|
268 | for k in ('LANGUAGE', 'LANG', 'LC_ALL', 'LC_MESSAGES'): | |
|
269 | env[k] = 'en_US.UTF-8' | |
|
268 | # Avoid localized output, preserve current locale for everything else. | |
|
269 | env['LC_MESSAGES'] = 'C' | |
|
270 | 270 | write, read, err = util.popen3(cmd, env=env, newlines=True) |
|
271 | 271 | retdata = read.read() |
|
272 | 272 | err = err.read().strip() |
General Comments 0
You need to be logged in to leave comments.
Login now