diff options
Diffstat (limited to 'yt_dlp/extractor/testurl.py')
-rw-r--r-- | yt_dlp/extractor/testurl.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/yt_dlp/extractor/testurl.py b/yt_dlp/extractor/testurl.py index 3cf0017..31e3c4d 100644 --- a/yt_dlp/extractor/testurl.py +++ b/yt_dlp/extractor/testurl.py @@ -30,7 +30,7 @@ class TestURLIE(InfoExtractor): ), None) if not extractor: raise ExtractorError( - 'Found multiple matching extractors: %s' % ' '.join(ie.IE_NAME for ie in matching_extractors), + 'Found multiple matching extractors: {}'.format(' '.join(ie.IE_NAME for ie in matching_extractors)), expected=True) else: extractor = matching_extractors[0] |