mirror of
https://github.com/ytdl-org/youtube-dl.git
synced 2024-11-16 23:35:45 +00:00
Force CI test
Replace f-string
This commit is contained in:
parent
38e5559877
commit
336f860303
1 changed files with 1 additions and 1 deletions
|
@ -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…
Reference in a new issue