diff options
author | Sergey M. <dstftw@gmail.com> | 2014-02-23 19:00:51 +0700 |
---|---|---|
committer | Sergey M. <dstftw@gmail.com> | 2014-02-23 19:00:51 +0700 |
commit | 7ff5d5c2e23cb1329d0505eb7f2bcc850f8d3047 (patch) | |
tree | 6e73da3f1cefb8bc7f01998dc8f0283eccb9b009 /youtube_dl | |
parent | 9b77f951c76cc4db41266100a4ed1ca1a2acdd4e (diff) |
Add one more format to unified_strdate
Diffstat (limited to 'youtube_dl')
-rw-r--r-- | youtube_dl/utils.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/youtube_dl/utils.py b/youtube_dl/utils.py index 471516b8f..25e40a837 100644 --- a/youtube_dl/utils.py +++ b/youtube_dl/utils.py @@ -779,6 +779,7 @@ def unified_strdate(date_str): '%Y-%m-%dT%H:%M:%S.%fZ', '%Y-%m-%dT%H:%M:%S.%f0Z', '%Y-%m-%dT%H:%M:%S', + '%Y-%m-%dT%H:%M:%S.%f', '%Y-%m-%dT%H:%M', ] for expression in format_expressions: |