1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-13 13:31:48 +00:00

Fixed errors in makerst pre-commit hook

This commit is contained in:
PouleyKetchoupp
2020-03-30 23:02:38 +02:00
parent b383484e44
commit 619354fb2c
2 changed files with 9 additions and 2 deletions

View File

@@ -353,7 +353,7 @@ def make_rst_class(class_def, state, dry_run, output_dir): # type: (ClassDef, S
class_name = class_def.name
if dry_run:
f = open(os.devnull, "w")
f = open(os.devnull, "w", encoding="utf-8")
else:
f = open(os.path.join(output_dir, "class_" + class_name.lower() + ".rst"), "w", encoding="utf-8")