1
0
Fork 0
mirror of https://github.com/ytdl-org/youtube-dl.git synced 2024-06-01 18:09:28 +00:00

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
This commit is contained in:
dirkf 2021-10-22 23:24:24 +01:00 committed by df
parent a803582717
commit d599bed9aa

View file

@ -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