1
0
mirror of https://github.com/l1ving/youtube-dl synced 2025-02-08 14:13:16 +08:00

Fix flake8

This commit is contained in:
runraid 2020-07-03 18:54:25 -07:00
parent 3175e76ad0
commit 469a31b931

View File

@ -30,7 +30,7 @@ class GabIE(InfoExtractor):
webpage = self._download_webpage(url, video_id)
title = self._html_search_regex(r'<title>(.+?)</title>', webpage, 'title')
url_result = re.search('https?://(?:www\.)?gab\.com/system/media_attachments/files/[0-9]+/[0-9]+/[0-9]+/original/\w+\.\w+', webpage)
url_result = re.search(r'https?://(?:www\.)?gab\.com/system/media_attachments/files/[0-9]+/[0-9]+/[0-9]+/original/\w+\.\w+', webpage)
video_url = url_result.group()
return {