diff options
author | pukkandan <pukkandan.ytdlp@gmail.com> | 2021-05-09 02:55:05 +0530 |
---|---|---|
committer | pukkandan <pukkandan.ytdlp@gmail.com> | 2021-05-11 13:35:05 +0530 |
commit | fac988053fc9b7a7f7dab9110d7de751511e1883 (patch) | |
tree | 17549fefb3dfa2e0f934f350be088c500d526e4e /yt_dlp/extractor/common.py | |
parent | 61241abbb0ea2c515765fd8f1fc25379788a0d42 (diff) | |
download | hypervideo-pre-fac988053fc9b7a7f7dab9110d7de751511e1883.tar.lz hypervideo-pre-fac988053fc9b7a7f7dab9110d7de751511e1883.tar.xz hypervideo-pre-fac988053fc9b7a7f7dab9110d7de751511e1883.zip |
Release 2021.05.11
* and some documentation improvements
Diffstat (limited to 'yt_dlp/extractor/common.py')
-rw-r--r-- | yt_dlp/extractor/common.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/yt_dlp/extractor/common.py b/yt_dlp/extractor/common.py index 0112585af..99695e14f 100644 --- a/yt_dlp/extractor/common.py +++ b/yt_dlp/extractor/common.py @@ -1596,7 +1596,7 @@ class InfoExtractor(object): def print_verbose_info(self, to_screen): if self._sort_user: - to_screen('[debug] Sort order given by user: %s' % ','.join(self._sort_user)) + to_screen('[debug] Sort order given by user: %s' % ', '.join(self._sort_user)) if self._sort_extractor: to_screen('[debug] Sort order given by extractor: %s' % ', '.join(self._sort_extractor)) to_screen('[debug] Formats sorted by: %s' % ', '.join(['%s%s%s' % ( |