aboutsummaryrefslogtreecommitdiffstats
path: root/yt_dlp/extractor/common.py
diff options
context:
space:
mode:
authorpukkandan <pukkandan.ytdlp@gmail.com>2022-10-04 01:34:04 +0530
committerpukkandan <pukkandan.ytdlp@gmail.com>2022-10-04 01:48:14 +0530
commita057779d5e706f7bb8721a6c46cca47f0925f682 (patch)
tree51d5f484e76d654101d461ec8e42acbc24cf93ef /yt_dlp/extractor/common.py
parent7474e4531e5911b04030ee52ff93ca4f2527490d (diff)
downloadhypervideo-pre-a057779d5e706f7bb8721a6c46cca47f0925f682.tar.lz
hypervideo-pre-a057779d5e706f7bb8721a6c46cca47f0925f682.tar.xz
hypervideo-pre-a057779d5e706f7bb8721a6c46cca47f0925f682.zip
[cleanup] Minor fixes
Closes #5129, Closes #4982
Diffstat (limited to 'yt_dlp/extractor/common.py')
-rw-r--r--yt_dlp/extractor/common.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/yt_dlp/extractor/common.py b/yt_dlp/extractor/common.py
index 0700b4767..944b196a1 100644
--- a/yt_dlp/extractor/common.py
+++ b/yt_dlp/extractor/common.py
@@ -1862,7 +1862,7 @@ class InfoExtractor:
alias, field = field, self._get_field_setting(field, 'field')
if self._get_field_setting(alias, 'deprecated'):
self.ydl.deprecated_feature(f'Format sorting alias {alias} is deprecated and may '
- 'be removed in a future version. Please use {field} instead')
+ f'be removed in a future version. Please use {field} instead')
reverse = match.group('reverse') is not None
closest = match.group('separator') == '~'
limit_text = match.group('limit')