Browse Source

[utils] Remove AM/PM from unified_strdate patterns

totalwebcasting
Sergey M․ 9 years ago
parent
commit
f160785c5c
2 changed files with 4 additions and 3 deletions
  1. +1
    -0
      test/test_utils.py
  2. +3
    -3
      youtube_dl/utils.py

+ 1
- 0
test/test_utils.py View File

@ -249,6 +249,7 @@ class TestUtil(unittest.TestCase):
self.assertEqual(
unified_strdate('2/2/2015 6:47:40 PM', day_first=False),
'20150202')
self.assertEqual(unified_strdate('Feb 14th 2016 5:45PM'), '20160214')
self.assertEqual(unified_strdate('25-09-2014'), '20140925')
self.assertEqual(unified_strdate('UNKNOWN DATE FORMAT'), None)


+ 3
- 3
youtube_dl/utils.py View File

@ -905,9 +905,9 @@ def unified_strdate(date_str, day_first=True):
'%d %b %Y',
'%B %d %Y',
'%b %d %Y',
'%b %dst %Y %I:%M%p',
'%b %dnd %Y %I:%M%p',
'%b %dth %Y %I:%M%p',
'%b %dst %Y %I:%M',
'%b %dnd %Y %I:%M',
'%b %dth %Y %I:%M',
'%Y %m %d',
'%Y-%m-%d',
'%Y/%m/%d',


Loading…
Cancel
Save