From 6db8eca55d3fa02cf301c44b19bcdef4c8c2b8c5 Mon Sep 17 00:00:00 2001 From: Simon Sawicki Date: Tue, 12 Nov 2024 00:15:50 +0100 Subject: [PATCH] oops --- yt_dlp/utils/_utils.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/yt_dlp/utils/_utils.py b/yt_dlp/utils/_utils.py index 4afc621784..3a2ac53c21 100644 --- a/yt_dlp/utils/_utils.py +++ b/yt_dlp/utils/_utils.py @@ -944,8 +944,8 @@ def bug_reports_message(before=';'): from ..version import CHANNEL msg = ( - 'if possible, please pull the latest changes from the master branch' if detect_variant() == 'sourcex' - else 'please check if the bug is already fixed in the latest nightly version' if CHANNEL == 'stablex' + '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 == 'stable' 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')