diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2018-03-13 11:49:58 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-03-13 11:49:58 +0100 |
commit | 4287c7822b8aa06b069e42b44b9aa73396db62f5 (patch) | |
tree | 2db4764933bbf252b8ba0007816527265f4dd79d /doc/tools/makerst.py | |
parent | 6e491ff283b7cfa90a1e27e96edb0b7c9dececa6 (diff) | |
parent | 272ecddb2859e3c184886bc2d142e2e329b8ae83 (diff) |
Merge pull request #17440 from viktor-ferenczi/issue-5042
Properly closing all files in Python build code
Diffstat (limited to 'doc/tools/makerst.py')
-rw-r--r-- | doc/tools/makerst.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/doc/tools/makerst.py b/doc/tools/makerst.py index 9e767bf3d6..8074ce45ea 100644 --- a/doc/tools/makerst.py +++ b/doc/tools/makerst.py @@ -104,6 +104,7 @@ def make_class_list(class_list, columns): f.write("--+-------+") f.write("\n") + f.close() def rstize_text(text, cclass): # Linebreak + tabs in the XML should become two line breaks unless in a "codeblock" @@ -572,6 +573,8 @@ def make_rst_class(node): f.write("\n\n") f.write('\n') + f.close() + file_list = [] |