Skip to content

Commit

Permalink
Make bug_reports_message() fully updatable
Browse files Browse the repository at this point in the history
  • Loading branch information
dirkf committed Apr 5, 2024
1 parent 8d55e43 commit e83b4e4
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions youtube_dl/utils.py
Expand Up @@ -2376,10 +2376,7 @@ def bug_reports_message(before=';'):
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 += ' 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
return '; please report this issue on https://yt-dl.org/bug .'


class YoutubeDLError(Exception):
Expand Down

0 comments on commit e83b4e4

Please sign in to comment.