diff options
author | Philipp Hagemeister <phihag@phihag.de> | 2013-12-23 16:00:43 +0100 |
---|---|---|
committer | Philipp Hagemeister <phihag@phihag.de> | 2013-12-23 16:00:48 +0100 |
commit | c25c991809e10dc8fd4bc2ddf37f8675cbd818fb (patch) | |
tree | 7edef97c4216f170c9c014c97bbc03743ad046d4 /youtube_dl | |
parent | f45f96f8f83b7004960a269fea8bfab40a14c725 (diff) |
[mplayer] Fix error introduced by downloader separation
Diffstat (limited to 'youtube_dl')
-rw-r--r-- | youtube_dl/downloader/mplayer.py | 1 |
1 files changed, 1 insertions, 0 deletions
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) |