mirror of
https://github.com/godotengine/godot
synced 2024-11-02 09:38:07 +00:00
makerst: Fix file name not appearing in error message
This commit is contained in:
parent
c18d0f2035
commit
49f94b94c7
1 changed files with 3 additions and 3 deletions
|
@ -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,
|
||||
)
|
||||
|
||||
|
|
Loading…
Reference in a new issue