Explorar el Código

Fix erroneous "content too short" error message

Ricardo Garcia hace 15 años
padre
commit
b905e5f583
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  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