From f882302d16b7fe5457283bdd0ce271c749330fbd Mon Sep 17 00:00:00 2001 From: onyx-and-iris Date: Tue, 1 Jul 2025 09:29:56 +0100 Subject: [PATCH] fixes missing argument --- obsws_cli/record.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/obsws_cli/record.py b/obsws_cli/record.py index f76019f..8915d10 100644 --- a/obsws_cli/record.py +++ b/obsws_cli/record.py @@ -168,5 +168,5 @@ def chapter( ctx.obj['obsws'].create_record_chapter(chapter_name) console.out.print( - f'Chapter {console.highlight(chapter_name or "unnamed")} created successfully.' + f'Chapter {console.highlight(ctx, chapter_name or "unnamed")} created successfully.' )