1
0
Fork 0
mirror of https://github.com/ytdl-org/youtube-dl.git synced 2024-05-19 11:39:28 +00:00

Update youtube_dl/extractor/newgrounds.py - remove f-string

This commit is contained in:
dirkf 2022-07-21 21:18:56 +01:00 committed by GitHub
parent c848538aff
commit 3091daa834
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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']