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

pull/31091/head
dirkf 2 years ago committed by GitHub
parent c848538aff
commit 3091daa834
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -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…
Cancel
Save