commit | 727ee98a401b5993f6b952074f43c7f770604acf | [log] [tgz] |
---|---|---|
author | Shawn O. Pearce <sop@google.com> | Tue Dec 07 08:46:14 2010 -0800 |
committer | Shawn O. Pearce <sop@google.com> | Sun Jan 09 17:39:22 2011 -0800 |
tree | e13bf1101981e15ef1cdf3a5dcc38a608b70aedd | |
parent | df14a70c4529821d7450303ec553a9f608af1656 [diff] |
Use os.environ.copy() instead of dict() Signed-off-by: Shawn O. Pearce <sop@google.com> (cherry picked from commit 3218c13205694434edb2375ab8a8515554eed366)
diff --git a/git_command.py b/git_command.py index 4aeacd5..513b9eb 100644 --- a/git_command.py +++ b/git_command.py
@@ -127,7 +127,7 @@ ssh_proxy = False, cwd = None, gitdir = None): - env = dict(os.environ) + env = os.environ.copy() for e in [REPO_TRACE, GIT_DIR,