Browse Source

Drop hash character in downloader output (#4484)

master
Philipp Hagemeister 10 years ago
parent
commit
734ea11e3c
1 changed files with 1 additions and 1 deletions
  1. 2
      youtube_dl/YoutubeDL.py

2
youtube_dl/YoutubeDL.py

@ -712,7 +712,7 @@ class YoutubeDL(object):
entries = entries[::-1] entries = entries[::-1]
for i, entry in enumerate(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 = { extra = {
'n_entries': n_entries, 'n_entries': n_entries,
'playlist': playlist, 'playlist': playlist,

|||||||
100:0
Loading…
Cancel
Save