diff options
Diffstat (limited to 'youtube_dl/utils.py')
| -rw-r--r-- | youtube_dl/utils.py | 4 | 
1 files changed, 4 insertions, 0 deletions
| diff --git a/youtube_dl/utils.py b/youtube_dl/utils.py index 7809c4e0b..3574fc615 100644 --- a/youtube_dl/utils.py +++ b/youtube_dl/utils.py @@ -763,6 +763,10 @@ class YoutubeDLHandler(compat_urllib_request.HTTPHandler):  def unified_strdate(date_str):      """Return a string with the date in the format YYYYMMDD""" + +    if date_str is None: +        return None +      upload_date = None      #Replace commas      date_str = date_str.replace(',', ' ') | 
