diff options
Diffstat (limited to 'yt_dlp/extractor/vesti.py')
-rw-r--r-- | yt_dlp/extractor/vesti.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/yt_dlp/extractor/vesti.py b/yt_dlp/extractor/vesti.py index a2e9022..844041a 100644 --- a/yt_dlp/extractor/vesti.py +++ b/yt_dlp/extractor/vesti.py @@ -94,7 +94,7 @@ class VestiIE(InfoExtractor): # rtmp download 'skip_download': True, }, - 'skip': 'Translation has finished' + 'skip': 'Translation has finished', }, ] @@ -109,7 +109,7 @@ class VestiIE(InfoExtractor): page) if mobj: video_id = mobj.group('id') - page = self._download_webpage('http://www.vesti.ru/only_video.html?vid=%s' % video_id, video_id, + page = self._download_webpage(f'http://www.vesti.ru/only_video.html?vid={video_id}', video_id, 'Downloading video page') rutv_url = RUTVIE._extract_url(page) |