youtube-dl

Another place where youtube-dl lives on
git clone git://git.oshgnacknak.de/youtube-dl.git
Log | Files | Refs | README | LICENSE

commit 6a0015a7e0deaf7f82e64fbfb5ee62d2058dd95f
parent 7db85b2c70eb933e7b52eebaf2d5401abd502f6b
Author: Ricardo Garcia <sarbalap+freshmeat@gmail.com>
Date:   Wed, 27 May 2009 23:02:37 +0200

Fix missing cast preventing detection of already downloaded file

Diffstat:
Myoutube-dl | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/youtube-dl b/youtube-dl @@ -397,8 +397,8 @@ class FileDownloader(object): raise data = urllib2.urlopen(basic_request) content_length = data.info()['Content-Length'] - if content_length is not None and content_length == resume_len: - self.report_file_already_downloaded(self.name) + if content_length is not None and long(content_length) == resume_len: + self.report_file_already_downloaded(stream.name) return else: self.report_unable_to_resume()