diff options
author | Simon Sawicki <contact@grub4k.xyz> | 2023-11-14 22:40:38 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-11-14 22:40:38 +0100 |
commit | b012271d01b59759e4eefeab0308698cd9e7224c (patch) | |
tree | f1b4d5e7c2fc4be975263e55b6d68f501eb36e51 /yt_dlp/extractor/redtube.py | |
parent | f04b5bedad7b281bee9814686bba1762bae092eb (diff) |
[cleanup] Misc (#8510)
Authored by: bashonly, coletdjnz, dirkf, gamer191, seproDev, Grub4K
Diffstat (limited to 'yt_dlp/extractor/redtube.py')
-rw-r--r-- | yt_dlp/extractor/redtube.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/yt_dlp/extractor/redtube.py b/yt_dlp/extractor/redtube.py index 49076ccd8..172c31b39 100644 --- a/yt_dlp/extractor/redtube.py +++ b/yt_dlp/extractor/redtube.py @@ -39,7 +39,7 @@ class RedTubeIE(InfoExtractor): def _real_extract(self, url): video_id = self._match_id(url) webpage = self._download_webpage( - 'http://www.redtube.com/%s' % video_id, video_id) + f'https://www.redtube.com/{video_id}', video_id) ERRORS = ( (('video-deleted-info', '>This video has been removed'), 'has been removed'), |