This is an automated email from the git hooks/post-receive script. New commit to branch develop in repository mum. See http://git.chorem.org/mum.git commit f9d509a69e348d77913e8949cf58af0912aaa233 Author: Alexis Guilbaud <guilbaud@codelutin.com> Date: Thu Jul 9 10:13:29 2015 +0200 ssh connection module runs commands with LANG=C environment variable --- app/modules/connection_modules/ssh.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/modules/connection_modules/ssh.py b/app/modules/connection_modules/ssh.py index 99c3879..c24490b 100644 --- a/app/modules/connection_modules/ssh.py +++ b/app/modules/connection_modules/ssh.py @@ -60,7 +60,7 @@ class SSH: return self.known_port def exec_command(self, cmd): - stdin, stdout, stderr = self.ssh.exec_command(cmd) + stdin, stdout, stderr = self.ssh.exec_command("bash -c 'LANG=C %s'" % cmd) out = stdout.read() err = stderr.read() if not err == "" and out == "": -- To stop receiving notification emails like this one, please contact chorem.org SCM administrator <admin+scm@chorem.org>.