From 47b8dab29e8930a752533e74a87befd52ca4a2a8 Mon Sep 17 00:00:00 2001 From: Philipp Hagemeister Date: Fri, 22 Jul 2011 15:28:42 +0200 Subject: [PATCH] Removed inaccurate warning --- youtube-dl | 1 - 1 file changed, 1 deletion(-) diff --git a/youtube-dl b/youtube-dl index 07904604c..17a2da2ef 100755 --- a/youtube-dl +++ b/youtube-dl @@ -1233,7 +1233,6 @@ class YoutubeIE(InfoExtractor): except NameError: video_description = u'No description available.' if self._downloader.params.get('forcedescription', False) or self._downloader.params.get('writedescription', False): - warnings.warn(u'You are using an old Python version, install Python 2.6+ or lxml. Falling back to old video description extractor.') mobj = re.search(r'', video_webpage) if mobj is not None: video_description = mobj.group(1).decode('utf-8')