diff options
author | Philipp Hagemeister <phihag@phihag.de> | 2014-12-16 00:37:42 +0100 |
---|---|---|
committer | Philipp Hagemeister <phihag@phihag.de> | 2014-12-16 00:37:42 +0100 |
commit | 734ea11e3c57ca4df7d9cfc475b1b99b56c18034 (patch) | |
tree | 28441624d46dc573d3f9176445c86a77436112aa | |
parent | 3940450878480cf12a12072a03db2c641c63c250 (diff) |
Drop hash character in downloader output (#4484)
-rwxr-xr-x | youtube_dl/YoutubeDL.py | 2 |
1 files changed, 1 insertions, 1 deletions
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, |