X-Git-Url: http://code.vuplus.com/gitweb/?a=blobdiff_plain;ds=sidebyside;f=lib%2Fpython%2FPlugins%2FExtensions%2FDVDBurn%2FProcess.py;fp=lib%2Fpython%2FPlugins%2FExtensions%2FDVDBurn%2FProcess.py;h=9a37c14e1b15d793f1a0b8f536db3a091c246a03;hb=3455b60a05c4c3f7a59c2e5949f132bb04134969;hp=6d9a44918c1ecb9d95dbe4a255488df60fdd757d;hpb=d54760e74574f4fdc37b73f9afc8474e744d8543;p=vuplus_dvbapp diff --git a/lib/python/Plugins/Extensions/DVDBurn/Process.py b/lib/python/Plugins/Extensions/DVDBurn/Process.py index 6d9a449..9a37c14 100644 --- a/lib/python/Plugins/Extensions/DVDBurn/Process.py +++ b/lib/python/Plugins/Extensions/DVDBurn/Process.py @@ -166,7 +166,10 @@ class DemuxTask(Task): if failed: import os for file in self.generated_files: - os.remove(file) + try: + os.remove(file) + except OSError: + pass class MplexTaskPostcondition(Condition): def check(self, task):