Force CI test

Replace f-string
This commit is contained in:
dirkf 2023-01-06 15:18:20 +00:00 committed by GitHub
parent 38e5559877
commit 336f860303
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -53,7 +53,7 @@ class TruthIE(InfoExtractor):
def _real_extract(self, url):
video_id = self._match_id(url)
status = self._download_json(f'https://truthsocial.com/api/v1/statuses/{video_id}', video_id)
status = self._download_json('https://truthsocial.com/api/v1/statuses/' + video_id, video_id)
uploader_id = strip_or_none(status['account']['username'])
return {
'id': video_id,