Skip to content

Commit

Permalink
[git] Update the llvm git helper script to work correctly with the
Browse files Browse the repository at this point in the history
latest Python versions.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@313435 91177308-0d34-0410-b5e6-96231b3b80d8
  • Loading branch information
chandlerc committed Sep 16, 2017
1 parent 679ad58 commit b2acab9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion utils/git-svn/git-llvm
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ def shell(cmd, strip=True, cwd=None, stdin=None, die_on_failure=True,

start = time.time()
p = subprocess.Popen(cmd, cwd=cwd, stdout=subprocess.PIPE, stderr=err_pipe,
stdin=subprocess.PIPE)
stdin=subprocess.PIPE, universal_newlines=True)
stdout, stderr = p.communicate(input=stdin)
elapsed = time.time() - start

Expand Down

0 comments on commit b2acab9

Please sign in to comment.