mirror of https://github.com/morpheus65535/bazarr
Fix for #716.
This commit is contained in:
parent
cca888fa94
commit
67ad65ed76
|
@ -179,7 +179,7 @@ class VideoFileParser:
|
|||
if PY3:
|
||||
command = [parser] + commandArgs + [inputFile]
|
||||
completedProcess = subprocess.run(
|
||||
command, stdout=subprocess.PIPE, stderr=subprocess.PIPE, universal_newlines=True
|
||||
command, stdout=subprocess.PIPE, stderr=subprocess.PIPE, universal_newlines=True, encoding="utf-8"
|
||||
)
|
||||
if completedProcess.returncode:
|
||||
raise IOError(
|
||||
|
|
Loading…
Reference in New Issue