From 757d9636f35463dde77d1651ecbe9270ded261cf Mon Sep 17 00:00:00 2001 From: Balduin Scheffbuch <58397161+bscheffbuch@users.noreply.github.com> Date: Sat, 19 Oct 2024 12:39:48 +0200 Subject: [PATCH] Refactor download message to use "file" instead of "video" --- 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 9e5620eef..475b8c5c1 100755 --- a/youtube_dl/YoutubeDL.py +++ b/youtube_dl/YoutubeDL.py @@ -1179,7 +1179,7 @@ class YoutubeDL(object): x_forwarded_for = ie_result.get('__x_forwarded_for_ip') for i, entry in enumerate(entries, 1): - self.to_screen('[download] Downloading video %s of %s' % (i, n_entries)) + self.to_screen('[download] Downloading file %s of %s' % (i, n_entries)) # This __x_forwarded_for_ip thing is a bit ugly but requires # minimal changes if x_forwarded_for: