diff options
| author | Philipp Hagemeister <phihag@phihag.de> | 2014-01-29 11:16:12 +0100 | 
|---|---|---|
| committer | Philipp Hagemeister <phihag@phihag.de> | 2014-01-29 11:16:12 +0100 | 
| commit | b11cec4162ea8deeda3bbaa081d402b76dfb3899 (patch) | |
| tree | ee78c802066b5a41c65e0d06db87bcbfa5e92c11 | |
| parent | 7eeb5bef24b0c76e5d01d8f4ac6f94fb70416bb5 (diff) | |
[youtube:user] Fix id key (Fixes #1745)
| -rw-r--r-- | youtube_dl/extractor/youtube.py | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dl/extractor/youtube.py b/youtube_dl/extractor/youtube.py index 87a5a452e..54592d174 100644 --- a/youtube_dl/extractor/youtube.py +++ b/youtube_dl/extractor/youtube.py @@ -1662,7 +1662,7 @@ class YoutubeUserIE(InfoExtractor):                      '_type': 'url',                      'url': video_id,                      'ie_key': 'Youtube', -                    'id': 'video_id', +                    'id': video_id,                      'title': title,                  }          url_results = PagedList(download_page, self._GDATA_PAGE_SIZE)  | 
