diff options
author | Sergey M․ <dstftw@gmail.com> | 2020-02-29 19:17:27 +0700 |
---|---|---|
committer | Sergey M․ <dstftw@gmail.com> | 2020-02-29 19:19:24 +0700 |
commit | 7947a1f7dbc6ba47a6f22ab67fd330e57c0ef87c (patch) | |
tree | 6350972931916e7acfced5b5a9bcd2d53e932849 /youtube_dl/extractor/vimeo.py | |
parent | fca6dba8b80286ae6d3ca0a60c4799c220a52650 (diff) |
Remove no longer needed compat_str around geturl
Diffstat (limited to 'youtube_dl/extractor/vimeo.py')
-rw-r--r-- | youtube_dl/extractor/vimeo.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dl/extractor/vimeo.py b/youtube_dl/extractor/vimeo.py index f378aa283..1da4ced96 100644 --- a/youtube_dl/extractor/vimeo.py +++ b/youtube_dl/extractor/vimeo.py @@ -591,7 +591,7 @@ class VimeoIE(VimeoBaseInfoExtractor): # Retrieve video webpage to extract further information webpage, urlh = self._download_webpage_handle( url, video_id, headers=headers) - redirect_url = compat_str(urlh.geturl()) + redirect_url = urlh.geturl() except ExtractorError as ee: if isinstance(ee.cause, compat_HTTPError) and ee.cause.code == 403: errmsg = ee.cause.read() |