youtube-dl

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

commit 2c6945be30511f633b3544838692894802e8c9bd
parent 9a6f4429a08a4bb7e6a92cf74d0b7451a5e9e03f
Author: Philipp Hagemeister <phihag@phihag.de>
Date:   Tue, 11 Dec 2012 18:07:38 +0100

Fix TestYoutubeLists.test_youtube_user

Diffstat:
Mtest/test_youtube_lists.py | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/test/test_youtube_lists.py b/test/test_youtube_lists.py @@ -8,7 +8,7 @@ import socket import os sys.path.append(os.path.dirname(os.path.dirname(os.path.abspath(__file__)))) -from youtube_dl.InfoExtractors import YoutubePlaylistIE +from youtube_dl.InfoExtractors import YoutubeUserIE,YoutubePlaylistIE from youtube_dl.utils import * # General configuration (from __init__, not very elegant...) @@ -62,7 +62,7 @@ class TestYoutubeLists(unittest.TestCase): def test_youtube_user(self): DL = FakeDownloader() - IE = YoutubePlaylistIE(DL) + IE = YoutubeUserIE(DL) IE.extract('https://www.youtube.com/user/TheLinuxFoundation') self.assertTrue(len(DL.result) >= 320)