1
0
mirror of https://github.com/l1ving/youtube-dl synced 2025-03-10 19:17:17 +08:00

lets go wild

This commit is contained in:
Avi Peretz 2018-12-30 22:36:35 +02:00
parent dfeed7fa42
commit facff12001

View File

@ -177,6 +177,7 @@ class OdnoklassnikiIE(InfoExtractor):
r'vp-layer-info_date">(?P<date>.*?)<\/span>', r'vp-layer-info_date">(?P<date>.*?)<\/span>',
webpage, 'upload date', group='date') webpage, 'upload date', group='date')
if upload_date_str: if upload_date_str:
upload_date_str = upload_date_str.replace('Sept', 'Sep')
from datetime import datetime, timedelta from datetime import datetime, timedelta
upload_date_time = None upload_date_time = None
try: try: