1
0
Fork 0
mirror of https://github.com/ytdl-org/youtube-dl.git synced 2024-05-20 12:09:32 +00:00

Close video file before removing it.

This commit is contained in:
Ricardo Garcia 2009-05-21 20:58:31 +02:00
parent 097ba9472b
commit 488f619471

View file

@ -286,6 +286,7 @@ class FileDownloader(object):
self._do_download(outstream, info_dict['url'])
outstream.close()
except (OSError, IOError), err:
outstream.close()
os.remove(filename)
raise UnavailableFormatError
except (urllib2.URLError, httplib.HTTPException, socket.error), err: