浏览代码

Fixed failure of os.rename after receiving file finished due to file not being closed.

Following error happen while at the end of _do_download called try_rename
WindowsError: [Error 32] The process cannot access the file because it is being used by another process
Vasyl' Vavrychuk 14 年之前
父节点
当前提交
6f0ff3bab9
共有 1 个文件被更改,包括 1 次插入0 次删除
  1. 1 0
      youtube-dl

+ 1 - 0
youtube-dl

@@ -640,6 +640,7 @@ class FileDownloader(object):
 			# Apply rate limit
 			# Apply rate limit
 			self.slow_down(start, byte_counter)
 			self.slow_down(start, byte_counter)
 
 
+		stream.close()
 		self.report_finish()
 		self.report_finish()
 		if data_len is not None and str(byte_counter) != data_len:
 		if data_len is not None and str(byte_counter) != data_len:
 			raise ContentTooShortError(byte_counter, long(data_len))
 			raise ContentTooShortError(byte_counter, long(data_len))