Skip to content

Commit 50acb26

Browse files
committed
Fixed f-string error on python < 3.12
Fixes #3 Signed-off-by: Ole Herman Schumacher Elgesem <[email protected]>
1 parent 701406a commit 50acb26

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/cfengine_cli/docs.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -215,7 +215,7 @@ def _process_markdown_code_blocks(
215215
for language in languages:
216216
if language not in SUPPORTED_LANGUAGES:
217217
raise UserError(
218-
f"Unsupported language '{language}'. The supported languages are: {", ".join(SUPPORTED_LANGUAGES)}"
218+
f"Unsupported language '{language}'. The supported languages are: {', '.join(SUPPORTED_LANGUAGES)}"
219219
)
220220

221221
parsed_markdowns = get_markdown_files(path, languages)

0 commit comments

Comments
 (0)