| Index: third_party/WebKit/Tools/Scripts/webkitpy/common/system/systemhost.py
|
| diff --git a/third_party/WebKit/Tools/Scripts/webkitpy/common/system/systemhost.py b/third_party/WebKit/Tools/Scripts/webkitpy/common/system/systemhost.py
|
| index e3bbe7c6d2295b9c7d2a466df9b75e4c195f3bd0..01f986278676bec7385065fc31a453fd3acee160 100644
|
| --- a/third_party/WebKit/Tools/Scripts/webkitpy/common/system/systemhost.py
|
| +++ b/third_party/WebKit/Tools/Scripts/webkitpy/common/system/systemhost.py
|
| @@ -30,7 +30,7 @@ import os
|
| import platform
|
| import sys
|
|
|
| -from webkitpy.common.system import environment, executive, filesystem, platforminfo, user, workspace
|
| +from webkitpy.common.system import executive, filesystem, platforminfo, user, workspace
|
|
|
|
|
| class SystemHost(object):
|
| @@ -45,9 +45,7 @@ class SystemHost(object):
|
| self.stdin = sys.stdin
|
| self.stdout = sys.stdout
|
| self.stderr = sys.stderr
|
| -
|
| - def copy_current_environment(self):
|
| - return environment.Environment(os.environ.copy())
|
| + self.environ = os.environ
|
|
|
| def print_(self, *args, **kwargs):
|
| sep = kwargs.get('sep', ' ')
|
|
|