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 5a6f8c9 commit 55bb621Copy full SHA for 55bb621
cicd/tar2conda.py
@@ -307,9 +307,9 @@ def main(url, args):
307
308
print_err('>' + ' '.join(cmd))
309
try:
310
- print_err(subprocess.check_output(cmd).encode('utf-8'))
+ print_err(subprocess.check_output(cmd).decode('utf-8'))
311
except subprocess.CalledProcessError as exc:
312
- out = exc.output.encode('utf-8')
+ out = exc.output.decode('utf-8')
313
print_err(out)
314
# Conda build fails intermittently on Windows when cleaning
315
# up at the end. Ignore these errors on Windows.
0 commit comments