| Index: third_party/WebKit/Tools/Scripts/webkitpy/common/host.py
|
| diff --git a/third_party/WebKit/Tools/Scripts/webkitpy/common/host.py b/third_party/WebKit/Tools/Scripts/webkitpy/common/host.py
|
| index 1003eeb64ba2aae02b6d65f2ecbb63f12f75d035..3c2dd4307e22ce406672f7d129c1d4620f603ad9 100644
|
| --- a/third_party/WebKit/Tools/Scripts/webkitpy/common/host.py
|
| +++ b/third_party/WebKit/Tools/Scripts/webkitpy/common/host.py
|
| @@ -28,7 +28,6 @@
|
| # OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
| import logging
|
| -import os
|
| import sys
|
|
|
| from webkitpy.common.checkout.scm.detection import SCMDetector
|
| @@ -73,10 +72,10 @@ class Host(SystemHost):
|
| # messages and svn.py will fail to parse them.
|
| # FIXME: We should do these overrides *only* for the subprocesses we know need them!
|
| # This hack only works in unix environments.
|
| - os.environ['LANGUAGE'] = 'en'
|
| - os.environ['LANG'] = 'en_US.UTF-8'
|
| - os.environ['LC_MESSAGES'] = 'en_US.UTF-8'
|
| - os.environ['LC_ALL'] = ''
|
| + self.environ['LANGUAGE'] = 'en'
|
| + self.environ['LANG'] = 'en_US.UTF-8'
|
| + self.environ['LC_MESSAGES'] = 'en_US.UTF-8'
|
| + self.environ['LC_ALL'] = ''
|
|
|
| # FIXME: This is a horrible, horrible hack for WinPort and should be removed.
|
| # Maybe this belongs in Git in some more generic "find the git binary" codepath?
|
|
|