mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-10 17:18:01 +01:00
Removed inaccurate warning
This commit is contained in:
parent
91e6a3855b
commit
47b8dab29e
1 changed files with 0 additions and 1 deletions
|
@ -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'<meta name="description" content="(.*)"(?:\s*/)?>', video_webpage)
|
||||
if mobj is not None:
|
||||
video_description = mobj.group(1).decode('utf-8')
|
||||
|
|
Loading…
Reference in a new issue