aboutsummaryrefslogtreecommitdiff
path: root/youtube_dlc/extractor/common.py
diff options
context:
space:
mode:
authorpukkandan <pukkandan@gmail.com>2021-02-07 20:14:44 +0530
committerpukkandan <pukkandan@gmail.com>2021-02-07 20:15:02 +0530
commitecc97af3448423a461f017badd07bb5fa9206f37 (patch)
tree7764b61d57e29b330cf423cae9a80c2249ee374c /youtube_dlc/extractor/common.py
parent8a0b9322580e6691ee2f137a679120df2eb838d5 (diff)
[youtube] Don't show warning for empty playlist description (Closes #54)
:ci skip dl
Diffstat (limited to 'youtube_dlc/extractor/common.py')
-rw-r--r--youtube_dlc/extractor/common.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dlc/extractor/common.py b/youtube_dlc/extractor/common.py
index 8e6e6f2d9..0304b2133 100644
--- a/youtube_dlc/extractor/common.py
+++ b/youtube_dlc/extractor/common.py
@@ -975,7 +975,7 @@ class InfoExtractor(object):
video_info['id'] = playlist_id
if playlist_title:
video_info['title'] = playlist_title
- if playlist_description:
+ if playlist_description is not None:
video_info['description'] = playlist_description
return video_info