[cleanup] minor fixes

This commit is contained in:
pukkandan
2021-11-10 04:14:42 +05:30
parent 59a7a13ef9
commit c586f9e8de
6 changed files with 18 additions and 16 deletions

View File

@@ -4429,7 +4429,7 @@ class YoutubeYtUserIE(InfoExtractor):
def _real_extract(self, url):
user_id = self._match_id(url)
return self.url_result(
'https://www.youtube.com/user/%s' % user_id,
'https://www.youtube.com/user/%s/videos' % user_id,
ie=YoutubeTabIE.ie_key(), video_id=user_id)