mirror of
https://github.com/clinton-hall/nzbToMedia.git
synced 2025-07-06 05:01:10 -07:00
fix string and integer concat error. Fixes #1036
This commit is contained in:
parent
417b79db12
commit
c1b73be96a
1 changed files with 1 additions and 1 deletions
|
@ -419,7 +419,7 @@ def buildCommands(file, newDir, movieName, bitbucket):
|
|||
if subStreams[index]["index"] == sub["index"]:
|
||||
subloc = index
|
||||
break
|
||||
video_cmd.extend(['-vf', 'subtitles=' + inputFile + ":si=" + subloc])
|
||||
video_cmd.extend(['-vf', 'subtitles=' + inputFile + ':si=' + str(subloc)])
|
||||
burnt = 1
|
||||
if not core.ALLOWSUBS:
|
||||
break
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue