youtube-dl

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

commit c25c991809e10dc8fd4bc2ddf37f8675cbd818fb
parent f45f96f8f83b7004960a269fea8bfab40a14c725
Author: Philipp Hagemeister <phihag@phihag.de>
Date:   Mon, 23 Dec 2013 16:00:43 +0100

[mplayer] Fix error introduced by downloader separation

Diffstat:
Myoutube_dl/downloader/mplayer.py | 1+
1 file changed, 1 insertion(+), 0 deletions(-)

diff --git a/youtube_dl/downloader/mplayer.py b/youtube_dl/downloader/mplayer.py @@ -9,6 +9,7 @@ from ..utils import ( class MplayerFD(FileDownloader): def real_download(self, filename, info_dict): + url = info_dict['url'] self.report_destination(filename) tmpfilename = self.temp_name(filename)