Merge branch 'wkentaro-set-lc-all-to-in-english' into porcelain

* wkentaro-set-lc-all-to-in-english:
  Set LC_ALL=C at git status to make sure in English
master
Dan Nguyen 10 years ago
commit b9d720905c
  1. 2
      gitstatus.py

@ -74,7 +74,7 @@ def get_stash():
# `git status --porcelain --branch` can collect all information
# branch, remote_branch, untracked, staged, changed, conflicts, ahead, behind
po = Popen(['git', 'status', '--porcelain', '--branch'], env={'LC_ALL': 'C'},
po = Popen(['git', 'status', '--porcelain', '--branch'], env={'LC_ALL': 'C'},
stdout=PIPE, stderr=PIPE)
stdout, sterr = po.communicate()
if po.returncode != 0:

Loading…
Cancel
Save