X-Git-Url: http://git.bitcoin.ninja/index.cgi?a=blobdiff_plain;f=youtube_dl%2Futils.py;h=764a89ccaccc34e9236d84b445f9f2d8342e0244;hb=ae12bc3ebb4cb377c2b4337ec255e652b36f5143;hp=89c88a4d305a36c389f137926d6beec30f028878;hpb=e327b736ca6a6a1c880b93e09a3b310c354c2c7c;p=youtube-dl diff --git a/youtube_dl/utils.py b/youtube_dl/utils.py index 89c88a4d3..764a89cca 100644 --- a/youtube_dl/utils.py +++ b/youtube_dl/utils.py @@ -910,7 +910,7 @@ def unified_strdate(date_str, day_first=True): timetuple = email.utils.parsedate_tz(date_str) if timetuple: upload_date = datetime.datetime(*timetuple[:6]).strftime('%Y%m%d') - return upload_date + return compat_str(upload_date) def determine_ext(url, default_ext='unknown_video'):