diff options
| author | Felix Domke <tmbinc@2mac.waldobjekt.org> | 2009-06-19 19:09:06 +0200 |
|---|---|---|
| committer | Felix Domke <tmbinc@2mac.waldobjekt.org> | 2009-06-19 19:09:06 +0200 |
| commit | 4e3471bb70425fb05c3a3cd41ac1756d001307ab (patch) | |
| tree | 6f34a19adde73b5ecb60439bc61699c63593d1ad /lib/python/Plugins/Extensions/DVDBurn/Process.py | |
| parent | e3922901f71a44a74c320504a4a61f7b2906aaf2 (diff) | |
| parent | 3455b60a05c4c3f7a59c2e5949f132bb04134969 (diff) | |
| download | enigma2-4e3471bb70425fb05c3a3cd41ac1756d001307ab.tar.gz enigma2-4e3471bb70425fb05c3a3cd41ac1756d001307ab.zip | |
Merge branch 'master' of git.opendreambox.org:/git/enigma2
Diffstat (limited to 'lib/python/Plugins/Extensions/DVDBurn/Process.py')
| -rw-r--r-- | lib/python/Plugins/Extensions/DVDBurn/Process.py | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/lib/python/Plugins/Extensions/DVDBurn/Process.py b/lib/python/Plugins/Extensions/DVDBurn/Process.py index 6d9a4491..9a37c14e 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): |
