Skip to content

Commit

Permalink
uh
Browse files Browse the repository at this point in the history
  • Loading branch information
Artemchik542 committed Jun 29, 2024
1 parent a63a907 commit a71307d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/ticked_file_enforcement/ticked_file_enforcement.py
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ def post_error(string):
module_file_path = module_file.replace('\\', '/')
module_file_path[10:(len(module_file) - 1]
print(f" {module_file} with in it:")
if module_file[(len(module_file) - 11):(len(module_file)] != "includes.dm":
if module_file[(len(module_file) - 11):len(module_file)] != "includes.dm":
post_error(f"{module_file} must be named \"includes.dm\"")
fail_no_include_modular = True
else
Expand Down

0 comments on commit a71307d

Please sign in to comment.