mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-07 20:30:41 -05:00
Drop hash character in downloader output (#4484)
This commit is contained in:
parent
3940450878
commit
734ea11e3c
1 changed files with 1 additions and 1 deletions
|
@ -712,7 +712,7 @@ def process_ie_result(self, ie_result, download=True, extra_info={}):
|
|||
entries = entries[::-1]
|
||||
|
||||
for i, entry in enumerate(entries, 1):
|
||||
self.to_screen('[download] Downloading video #%s of %s' % (i, n_entries))
|
||||
self.to_screen('[download] Downloading video %s of %s' % (i, n_entries))
|
||||
extra = {
|
||||
'n_entries': n_entries,
|
||||
'playlist': playlist,
|
||||
|
|
Loading…
Reference in a new issue