1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-06 12:20:30 +00:00

makerst: Fix file name not appearing in error message

This commit is contained in:
Hugo Locurcio
2022-06-22 12:15:05 +02:00
parent c18d0f2035
commit 49f94b94c7

View File

@@ -913,9 +913,9 @@ def format_codeblock(code_type, post_text, indent_level, state): # types: str,
if to_skip > indent_level:
print_error(
"{}.xml: Four spaces should be used for indentation within ["
+ code_type
+ "].".format(state.current_class),
"{}.xml: Four spaces should be used for indentation within [{}].".format(
state.current_class, code_type
),
state,
)