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 c73acfd commit b41eaaaCopy full SHA for b41eaaa
1 file changed
setup.py
@@ -267,6 +267,8 @@ def _check_output(*popenargs, **kwargs):
267
if cmd is None:
268
cmd = popenargs[0]
269
raise CalledProcessError(retcode, cmd, output=output)
270
+ if sys.version_info[2] > 2:
271
+ return output.decode("ascii")
272
return output
273
274
0 commit comments