From 268d2fea8ed5840be883ad9a9c82f9e05253ad3f Mon Sep 17 00:00:00 2001 From: NAKAMURA Takumi Date: Sat, 3 Sep 2016 04:06:37 +0000 Subject: [PATCH] Make lit/util.py py3-compatible. llvm-svn: 280579 --- utils/lit/lit/util.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utils/lit/lit/util.py b/utils/lit/lit/util.py index b458a94fc1d..79eedfa18d4 100644 --- a/utils/lit/lit/util.py +++ b/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