aboutsummaryrefslogtreecommitdiff
path: root/lib/python
diff options
context:
space:
mode:
authorFraxinas <andreas.frisch@multimedia-labs.de>2011-02-14 09:02:01 +0100
committerFraxinas <andreas.frisch@multimedia-labs.de>2011-02-14 09:02:01 +0100
commit404cd0060ea3a3351f2fb41137f506eea42c23cc (patch)
tree0a75f0da7e8a17d98a1745b9224c72c8c94342f1 /lib/python
parent27b36b78b0e7018a1e40b8943ebc2b1d021bfaa0 (diff)
parent4fd027028b9d32767201dd4e8ec34edf7aa1366e (diff)
downloadenigma2-404cd0060ea3a3351f2fb41137f506eea42c23cc.tar.gz
enigma2-404cd0060ea3a3351f2fb41137f506eea42c23cc.zip
Merge commit '4fd027028b9d32767201dd4e8ec34edf7aa1366e' into experimental
Diffstat (limited to 'lib/python')
-rw-r--r--lib/python/Plugins/Extensions/DVDBurn/Process.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/python/Plugins/Extensions/DVDBurn/Process.py b/lib/python/Plugins/Extensions/DVDBurn/Process.py
index e00dedd9..2e7435bb 100644
--- a/lib/python/Plugins/Extensions/DVDBurn/Process.py
+++ b/lib/python/Plugins/Extensions/DVDBurn/Process.py
@@ -174,7 +174,8 @@ class DemuxTask(Task):
print "[DemuxTask::cleanup]"
self.mplex_streamfiles = [ self.mplex_videofile ]
for pid in self.relevantAudioPIDs:
- self.mplex_streamfiles.append(self.mplex_audiofiles[pid])
+ if pid in self.mplex_audiofiles:
+ self.mplex_streamfiles.append(self.mplex_audiofiles[pid])
print self.mplex_streamfiles
if failed: