diff options
author | PouleyKetchoupp <pouleyketchoup@gmail.com> | 2020-03-30 23:02:38 +0200 |
---|---|---|
committer | PouleyKetchoupp <pouleyketchoup@gmail.com> | 2020-03-31 00:02:11 +0200 |
commit | 619354fb2c9dd046d37221a3a5041dda47135e3e (patch) | |
tree | 9fb80930734611f6814cc0363382488e12c14a70 /doc/tools | |
parent | b383484e445b1554c811556181a7815e0308fd62 (diff) |
Fixed errors in makerst pre-commit hook
Diffstat (limited to 'doc/tools')
-rwxr-xr-x | doc/tools/makerst.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/tools/makerst.py b/doc/tools/makerst.py index 417fe59278..9de5eac31d 100755 --- a/doc/tools/makerst.py +++ b/doc/tools/makerst.py @@ -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") |