mirror of
https://github.com/morpheus65535/bazarr
synced 2025-02-12 01:06:01 +00:00
Fix for #707.
This commit is contained in:
parent
8d9023af80
commit
26b48b1759
1 changed files with 1 additions and 1 deletions
|
@ -179,7 +179,7 @@ class VideoFileParser:
|
|||
if PY3:
|
||||
command = [parser] + commandArgs + [inputFile]
|
||||
completedProcess = subprocess.run(
|
||||
command, stdout=subprocess.PIPE, stderr=subprocess.PIPE, text=True
|
||||
command, stdout=subprocess.PIPE, stderr=subprocess.PIPE, universal_newlines=True
|
||||
)
|
||||
if completedProcess.returncode:
|
||||
raise IOError(
|
||||
|
|
Loading…
Reference in a new issue