summaryrefslogtreecommitdiffstats
path: root/yt_dlp/extractor/rte.py
diff options
context:
space:
mode:
Diffstat (limited to 'yt_dlp/extractor/rte.py')
-rw-r--r--yt_dlp/extractor/rte.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/yt_dlp/extractor/rte.py b/yt_dlp/extractor/rte.py
index 729804d..42ee9d2 100644
--- a/yt_dlp/extractor/rte.py
+++ b/yt_dlp/extractor/rte.py
@@ -35,7 +35,7 @@ class RteBaseIE(InfoExtractor):
error_info = self._parse_json(ee.cause.response.read().decode(), item_id, fatal=False)
if error_info:
raise ExtractorError(
- '%s said: %s' % (self.IE_NAME, error_info['message']),
+ '{} said: {}'.format(self.IE_NAME, error_info['message']),
expected=True)
raise