mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-10-31 23:02:40 +00:00
fstrings need f
This commit is contained in:
parent
68b74d52ab
commit
a376ab99f8
2 changed files with 2 additions and 2 deletions
|
@ -117,7 +117,7 @@ def print_skipping(reason):
|
|||
|
||||
for other_ie in other_ies:
|
||||
if not other_ie.working():
|
||||
print_skipping('test depends on {other_ie.ie_key()}IE, is _REPORTED_BROKEN')
|
||||
print_skipping(f'test depends on {other_ie.ie_key()}IE, is _REPORTED_BROKEN')
|
||||
|
||||
params = get_params(test_case.get('params', {}))
|
||||
params['outtmpl'] = tname + '_' + params['outtmpl']
|
||||
|
|
|
@ -40,7 +40,7 @@ def setUp(self):
|
|||
self.ie = self.IE()
|
||||
self.DL.add_info_extractor(self.ie)
|
||||
if not self.IE.working():
|
||||
print('Skipping: {self.IE.ie_key()} is _REPORTED_BROKEN')
|
||||
print(f'Skipping: {self.IE.ie_key()} is _REPORTED_BROKEN')
|
||||
self.skipTest('IE is _REPORTED_BROKEN')
|
||||
|
||||
def getInfoDict(self):
|
||||
|
|
Loading…
Reference in a new issue