Force CI test

Replace f-string
pull/31141/head
dirkf 1 year ago committed by GitHub
parent 38e5559877
commit 336f860303
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -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,

Loading…
Cancel
Save