youtube-dl

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

commit f005f96ea594a82969885ecd124b094c7e09949a
parent 5e39123b3b6fd740d133fd45824b49b4bc674fa7
Author: Jaime Marquínez Ferrándiz <jaime.marquinez.ferrandiz@gmail.com>
Date:   Sun, 20 Sep 2015 12:23:13 +0200

[youtube:history] Explain why it has disabled and skip test

Diffstat:
Mtest/test_all_urls.py | 2+-
Myoutube_dl/extractor/__init__.py | 2++
2 files changed, 3 insertions(+), 1 deletion(-)

diff --git a/test/test_all_urls.py b/test/test_all_urls.py @@ -99,7 +99,7 @@ class TestAllURLsMatching(unittest.TestCase): def test_keywords(self): self.assertMatch(':ytsubs', ['youtube:subscriptions']) self.assertMatch(':ytsubscriptions', ['youtube:subscriptions']) - self.assertMatch(':ythistory', ['youtube:history']) + # self.assertMatch(':ythistory', ['youtube:history']) self.assertMatch(':thedailyshow', ['ComedyCentralShows']) self.assertMatch(':tds', ['ComedyCentralShows']) diff --git a/youtube_dl/extractor/__init__.py b/youtube_dl/extractor/__init__.py @@ -808,6 +808,8 @@ from .youtube import ( YoutubeIE, YoutubeChannelIE, YoutubeFavouritesIE, + # disabled because it can wipe the watch history (see #6893) + # remember to uncumment test in test/test_all_urls when it's fixed #YoutubeHistoryIE, YoutubePlaylistIE, YoutubeRecommendedIE,