diff options
| -rw-r--r-- | youtube_dl/extractor/vevo.py | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/youtube_dl/extractor/vevo.py b/youtube_dl/extractor/vevo.py index fa147a575..98a663496 100644 --- a/youtube_dl/extractor/vevo.py +++ b/youtube_dl/extractor/vevo.py @@ -169,7 +169,7 @@ class VevoIE(InfoExtractor):          timestamp_ms = int(self._search_regex(              r'/Date\((\d+)\)/', video_info['launchDate'], 'launch date')) -        upload_date = datetime.datetime.fromtimestamp(timestamp_ms // 1000) +        upload_date = datetime.datetime.utcfromtimestamp(timestamp_ms // 1000)          return {              'id': video_id,              'title': video_info['title'], | 
