diff options
author | Sebastian Thiel <byronimo@gmail.com> | 2014-11-17 17:54:18 +0100 |
---|---|---|
committer | Sebastian Thiel <byronimo@gmail.com> | 2014-11-17 17:54:18 +0100 |
commit | da09f02e67cb18e2c5312b9a36d2891b80cd9dcd (patch) | |
tree | b1d2282d0f8a2c221a61297d302668e8553c299d /git/cmd.py | |
parent | 2af98929bd185cf1b4316391078240f337877f66 (diff) | |
parent | 8df6b87a793434065cd9a01fcaa812e3ea47c4dd (diff) | |
download | gitpython-da09f02e67cb18e2c5312b9a36d2891b80cd9dcd.tar.gz |
Merge branch 'electrofelix-0.3-fix-env-usage' into 0.3
Diffstat (limited to 'git/cmd.py')
-rw-r--r-- | git/cmd.py | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -341,8 +341,10 @@ class Git(LazyMixin): cwd = self._working_dir # Start the process + env = os.environ.copy() + env["LC_MESSAGES"] = "C" proc = Popen(command, - env={"LC_MESSAGES": "C"}, + env=env, cwd=cwd, stdin=istream, stderr=PIPE, |