mirror of
https://github.com/ytdl-org/youtube-dl
synced 2024-11-13 22:08:00 +09:00
Update youtube_dl/extractor/newgrounds.py - remove f-string
This commit is contained in:
parent
c848538aff
commit
3091daa834
@ -79,7 +79,7 @@ class NewgroundsIE(InfoExtractor):
|
||||
}]
|
||||
|
||||
else:
|
||||
media_url = f'https://www.newgrounds.com/portal/video/{media_id}'
|
||||
media_url = 'https://www.newgrounds.com/portal/video/' + media_id
|
||||
media = self._download_json(media_url, media_id, headers={'X-Requested-With': 'XMLHttpRequest'})
|
||||
|
||||
uploader = media['author']
|
||||
|
Loading…
Reference in New Issue
Block a user