mirror of
https://github.com/ytdl-org/youtube-dl.git
synced 2025-08-22 22:34:01 -07: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):
|
def _real_extract(self, url):
|
||||||
video_id = self._match_id(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'])
|
uploader_id = strip_or_none(status['account']['username'])
|
||||||
return {
|
return {
|
||||||
'id': video_id,
|
'id': video_id,
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue