From: Jaime Marquínez Ferrándiz Date: Wed, 8 Jan 2014 15:15:20 +0000 (+0100) Subject: [hls] Fix the program name when reporting the file size X-Git-Url: http://git.bitcoin.ninja/index.cgi?a=commitdiff_plain;h=70af3439e92483e18d0e710362072bc2616b20c2;p=youtube-dl [hls] Fix the program name when reporting the file size --- diff --git a/youtube_dl/downloader/hls.py b/youtube_dl/downloader/hls.py index 51e8c4778..fa983462b 100644 --- a/youtube_dl/downloader/hls.py +++ b/youtube_dl/downloader/hls.py @@ -29,7 +29,7 @@ class HlsFD(FileDownloader): retval = subprocess.call(cmd) if retval == 0: fsize = os.path.getsize(encodeFilename(tmpfilename)) - self.to_screen(u'\r[%s] %s bytes' % (args[0], fsize)) + self.to_screen(u'\r[%s] %s bytes' % (cmd[0], fsize)) self.try_rename(tmpfilename, filename) self._hook_progress({ 'downloaded_bytes': fsize,