Drop hash character in downloader output (#4484)
authorPhilipp Hagemeister <phihag@phihag.de>
Mon, 15 Dec 2014 23:37:42 +0000 (00:37 +0100)
committerPhilipp Hagemeister <phihag@phihag.de>
Mon, 15 Dec 2014 23:37:42 +0000 (00:37 +0100)
youtube_dl/YoutubeDL.py

index 71c01facbaeea42ad4bda74853224c832b49c9df..8a6bcd51cac4ec5ea8415a08eeeb4ff9cc38ff64 100755 (executable)
@@ -712,7 +712,7 @@ class YoutubeDL(object):
                 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,