[bbc] Fix FutureWarning

pull/8/head
Sergey M․ 2015-10-17 00:26:45 +06:00
rodzic 6744f36db7
commit 8daeeedc06
1 zmienionych plików z 1 dodań i 1 usunięć
youtube_dl/extractor

Wyświetl plik

@ -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):