From: Philipp Hagemeister Date: Mon, 23 Dec 2013 15:00:43 +0000 (+0100) Subject: [mplayer] Fix error introduced by downloader separation X-Git-Url: http://git.bitcoin.ninja/index.cgi?a=commitdiff_plain;h=c25c991809e10dc8fd4bc2ddf37f8675cbd818fb;p=youtube-dl [mplayer] Fix error introduced by downloader separation --- diff --git a/youtube_dl/downloader/mplayer.py b/youtube_dl/downloader/mplayer.py index 7dd6e76d0..67e0e4189 100644 --- 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)