Detect errors in video data writes

This commit is contained in:
Ricardo Garcia 2010-04-17 18:49:56 +02:00
parent 2bebb386b8
commit 131efd1ae0
1 changed files with 4 additions and 1 deletions

View File

@ -566,7 +566,10 @@ class FileDownloader(object):
except (OSError, IOError), err:
self.trouble('ERROR: unable to open for writing: %s' % str(err))
return False
stream.write(data_block)
try:
stream.write(data_block)
except (IOError, OSError), err:
self.trouble('ERROR: unable to write data: %s' % str(err))
block_size = self.best_block_size(after - before, data_block_len)
# Progress message