fix non-iterable type. Fixes #1210

This commit is contained in:
clinton-hall 2017-02-27 16:16:52 +10:30
parent 346c0952e1
commit c4fea222a9

View file

@ -382,7 +382,8 @@ def buildCommands(file, newDir, movieName, bitbucket):
audio_cmd.extend(audio_cmd2)
if core.AINCLUDE and core.ACODEC3:
for audio in audioStreams.extend(commentary): #add commentry tracks back here.
audioStreams.extend(commentary) #add commentry tracks back here.
for audio in audioStreams:
if audio["index"] in a_mapped:
continue
used_audio += 1