We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 64b7736 commit 5a6f8c9Copy full SHA for 5a6f8c9
cicd/tar2conda.py
@@ -307,7 +307,7 @@ def main(url, args):
307
308
print_err('>' + ' '.join(cmd))
309
try:
310
- print_err(subprocess.check_output(cmd))
+ print_err(subprocess.check_output(cmd).encode('utf-8'))
311
except subprocess.CalledProcessError as exc:
312
out = exc.output.encode('utf-8')
313
print_err(out)
0 commit comments