From d599bed9aaac35d120c33674245c799b1445f52a Mon Sep 17 00:00:00 2001 From: dirkf Date: Fri, 22 Oct 2021 23:24:24 +0100 Subject: [PATCH] Only invite error reports from competent users And not from consumers of applications or services that embed yt-dl, whose owners should carry the can --- youtube_dl/utils.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/youtube_dl/utils.py b/youtube_dl/utils.py index e722eed58..85418fe3b 100644 --- a/youtube_dl/utils.py +++ b/youtube_dl/utils.py @@ -2321,7 +2321,11 @@ def bug_reports_message(): update_cmd = 'type youtube-dl -U to update' else: update_cmd = 'see https://yt-dl.org/update on how to update' - msg = '; please report this issue on https://yt-dl.org/bug .' + msg = '; if you did not run the failing \'youtube-dl\' command yourself, ' + msg += 'either directly or from a script that you control, please report ' + msg += 'this issue to the owner of the application, service or script in ' + msg += 'which this instance of \'youtube-dl\' is embedded; otherwise ' + msg += 'please report this issue on https://yt-dl.org/bug .' msg += ' Make sure you are using the latest version; %s.' % update_cmd msg += ' Be sure to call youtube-dl with the --verbose flag and include its complete output.' return msg