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
1 changed files with 1 additions and 1 deletions

View File

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