From 734ea11e3c57ca4df7d9cfc475b1b99b56c18034 Mon Sep 17 00:00:00 2001 From: Philipp Hagemeister Date: Tue, 16 Dec 2014 00:37:42 +0100 Subject: [PATCH] Drop hash character in downloader output (#4484) --- youtube_dl/YoutubeDL.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/youtube_dl/YoutubeDL.py b/youtube_dl/YoutubeDL.py index 71c01facb..8a6bcd51c 100755 --- a/youtube_dl/YoutubeDL.py +++ b/youtube_dl/YoutubeDL.py @@ -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,