diff options
author | NAKAMURA Takumi <geek4civic@gmail.com> | 2016-09-03 04:06:37 +0000 |
---|---|---|
committer | NAKAMURA Takumi <geek4civic@gmail.com> | 2016-09-03 04:06:37 +0000 |
commit | 76dbaebd02a57a44c805f34d45d96b879a3b848a (patch) | |
tree | 69720d3cc042c8ad80319b6cbf7b4e284d17824a | |
parent | 05e1dadac675c1a28739c6f49e771b3a230ec264 (diff) | |
download | bcm5719-llvm-76dbaebd02a57a44c805f34d45d96b879a3b848a.tar.gz bcm5719-llvm-76dbaebd02a57a44c805f34d45d96b879a3b848a.zip |
Make lit/util.py py3-compatible.
llvm-svn: 280579
-rw-r--r-- | llvm/utils/lit/lit/util.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/utils/lit/lit/util.py b/llvm/utils/lit/lit/util.py index b458a94fc1d..79eedfa18d4 100644 --- a/llvm/utils/lit/lit/util.py +++ b/llvm/utils/lit/lit/util.py @@ -76,7 +76,7 @@ def capture(args, env=None): raise subprocess.CalledProcessError(cmd=args, returncode=p.returncode, output="{}\n{}".format(out, err)) - return convert_string(out) + return out def which(command, paths = None): """which(command, [paths]) - Look up the given command in the paths string |