From 55cd83d4ecd2d409b1fa261854af7a2ca242b1a2 Mon Sep 17 00:00:00 2001 From: Clinton Hall Date: Mon, 1 Dec 2014 11:12:21 +1030 Subject: [PATCH] fix typo. Fixes #628 --- nzbtomedia/transcoder/transcoder.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nzbtomedia/transcoder/transcoder.py b/nzbtomedia/transcoder/transcoder.py index f587bd04..7005b226 100644 --- a/nzbtomedia/transcoder/transcoder.py +++ b/nzbtomedia/transcoder/transcoder.py @@ -420,7 +420,7 @@ def buildCommands(file, newDir, movieName, bitbucket): if nzbtomedia.BURN and not burnt and os.path.isfile(inputFile): subloc = 0 for index in range(len(subStreams)): - if sunStreams[index]["index"] == sub["index"]: + if subStreams[index]["index"] == sub["index"]: subloc = index break video_cmd.extend(['-vf', 'subtitles=' + inputFile + ":si=" + subloc])