This commit is contained in:
Simon Sawicki 2024-11-12 00:15:50 +01:00
parent b5976e9bd4
commit 6db8eca55d
No known key found for this signature in database

View File

@ -944,8 +944,8 @@ def bug_reports_message(before=';'):
from ..version import CHANNEL from ..version import CHANNEL
msg = ( msg = (
'if possible, please pull the latest changes from the master branch' if detect_variant() == 'sourcex' 'if possible, please pull the latest changes from the master branch' if detect_variant() == 'source'
else 'please check if the bug is already fixed in the latest nightly version' if CHANNEL == 'stablex' else 'please check if the bug is already fixed in the latest nightly version' if CHANNEL == 'stable'
else f'please report this issue on https://github.com/{REPOSITORY}/issues?q= , ' else f'please report this issue on https://github.com/{REPOSITORY}/issues?q= , '
'filling out the appropriate issue template. Confirm you are on the latest version using yt-dlp -U') 'filling out the appropriate issue template. Confirm you are on the latest version using yt-dlp -U')