We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b6f20ee commit 6063570Copy full SHA for 6063570
nbgitpuller/pull.py
@@ -16,6 +16,7 @@ def execute_cmd(cmd, **kwargs):
16
yield '$ {}\n'.format(' '.join(cmd))
17
kwargs['stdout'] = subprocess.PIPE
18
kwargs['stderr'] = subprocess.STDOUT
19
+ kwargs['env'] = dict(os.environ, LANG='C')
20
21
proc = subprocess.Popen(cmd, **kwargs)
22
0 commit comments