mirror of
https://github.com/mpv-player/mpv
synced 2024-12-18 12:55:16 +00:00
build: fix swift detection with python3
python3 returns bytes instead of str, unlike python2. explicitly decode the output.
This commit is contained in:
parent
3f73520897
commit
c82fed85b9
@ -6,7 +6,7 @@ def __run(cmd):
|
||||
stdout=Utils.subprocess.PIPE,
|
||||
stderr=Utils.subprocess.PIPE,
|
||||
shell=True)
|
||||
output = cmd.stdout.read().strip()
|
||||
output = cmd.stdout.read().decode().strip()
|
||||
return output
|
||||
except Exception:
|
||||
return ""
|
||||
|
Loading…
Reference in New Issue
Block a user