yet another py3 map() issue

"hey i know lets make everything return an iterable but not update anything else to accept them"
pull/227/head
Mike Lang 4 years ago
parent 045d973b55
commit bc34f68e2a

@ -342,7 +342,7 @@ def ffmpeg_cut_stdin(output_file, cut_start, duration, encode_args):
# permission to "overwrite" it.
'-y',
]
args = map(str, args)
args = list(map(str, args))
logging.info("Running full cut with args: {}".format(" ".join(args)))
return subprocess.Popen(args, stdin=subprocess.PIPE, stdout=output_file)

Loading…
Cancel
Save