From 6f7b8da5b5e64189a1090665313e89e067afb684 Mon Sep 17 00:00:00 2001 From: elpekenin Date: Tue, 10 Sep 2024 16:37:49 +0200 Subject: [PATCH] fix command name --- lib/python/qmk/cli/painter/make_font.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/python/qmk/cli/painter/make_font.py b/lib/python/qmk/cli/painter/make_font.py index 1073c711e0f..3e18fd74a56 100644 --- a/lib/python/qmk/cli/painter/make_font.py +++ b/lib/python/qmk/cli/painter/make_font.py @@ -62,7 +62,7 @@ def painter_convert_font_image(cli): # Work out the text substitutions for rendering the output data metadata = {"glyphs": _generate_font_glyphs_list(not cli.args.no_ascii, cli.args.unicode_glyphs)} - subs = generate_subs(cli, out_bytes, font_metadata=metadata, command_name="make_font") + subs = generate_subs(cli, out_bytes, font_metadata=metadata, command_name="painter_convert_font_image") # Render and write the header file header_text = render_header(subs)