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:
|
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'})
|
media = self._download_json(media_url, media_id, headers={'X-Requested-With': 'XMLHttpRequest'})
|
||||||
|
|
||||||
uploader = media['author']
|
uploader = media['author']
|
||||||
|
Loading…
Reference in New Issue
Block a user