diff options
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' % ( |