1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-07 12:30:27 +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: if to_skip > indent_level:
print_error( print_error(
"{}.xml: Four spaces should be used for indentation within [" "{}.xml: Four spaces should be used for indentation within [{}].".format(
+ code_type state.current_class, code_type
+ "].".format(state.current_class), ),
state, state,
) )