ソースを参照

Fix erroneous "content too short" error message

Ricardo Garcia 15 年 前
コミット
b905e5f583
1 ファイル変更1 行追加1 行削除
  1. 1 1
      youtube-dl

+ 1 - 1
youtube-dl

@@ -648,7 +648,7 @@ class FileDownloader(object):
 
 		stream.close()
 		self.report_finish()
-		if data_len is not None and str(byte_counter) != data_len:
+		if data_len is not None and byte_counter != data_len:
 			raise ContentTooShortError(byte_counter, long(data_len))
 		self.try_rename(tmpfilename, filename)
 		return True