diff options
author | Ricardo Garcia <sarbalap+freshmeat@gmail.com> | 2009-05-21 20:58:31 +0200 |
---|---|---|
committer | Ricardo Garcia <sarbalap+freshmeat@gmail.com> | 2010-10-31 11:24:19 +0100 |
commit | 488f6194718cf882344d113052bc85662a638f54 (patch) | |
tree | 77e25c74fced552b15fabe6fd3abd1e17b78ab73 | |
parent | 097ba9472b8ac3fa832d73ec0d179640db9393b7 (diff) |
Close video file before removing it.
-rwxr-xr-x | youtube-dl | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/youtube-dl b/youtube-dl index b2dc7952d..ec4c9b89c 100755 --- a/youtube-dl +++ b/youtube-dl @@ -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: |