logo

youtube-dl

[mirror] Download/Watch videos from video hosters
commit: 8daeeedc06f420e2a87ba4755b56e721391cedba
parent 6744f36db710eebe2ccc633e7f4f6132b968b0ec
Author: Sergey M․ <dstftw@gmail.com>
Date:   Sat, 17 Oct 2015 00:26:45 +0600

[bbc] Fix FutureWarning

Diffstat:

Myoutube_dl/extractor/bbc.py2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/youtube_dl/extractor/bbc.py b/youtube_dl/extractor/bbc.py @@ -421,7 +421,7 @@ class BBCCoUkIE(InfoExtractor): continue title = playlist.find('./{%s}title' % self._EMP_PLAYLIST_NS).text description_el = playlist.find('./{%s}summary' % self._EMP_PLAYLIST_NS) - description = description_el.text if description_el else None + description = description_el.text if description_el is not None else None def get_programme_id(item): def get_from_attributes(item):