aboutsummaryrefslogtreecommitdiffstats
path: root/resources/tools/doc_gen/gen_rst.py
diff options
context:
space:
mode:
Diffstat (limited to 'resources/tools/doc_gen/gen_rst.py')
-rwxr-xr-xresources/tools/doc_gen/gen_rst.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/resources/tools/doc_gen/gen_rst.py b/resources/tools/doc_gen/gen_rst.py
index c79ffc07bb..898f215b1b 100755
--- a/resources/tools/doc_gen/gen_rst.py
+++ b/resources/tools/doc_gen/gen_rst.py
@@ -198,7 +198,8 @@ def generate_py_rst_files():
for file in files:
module_name = file.split('.')[0]
write_module_title(fh, module_name)
- fh.write(rst_py_module.format('.'.join(module_path), module_name))
+ fh.write(rst_py_module.format('.'.join(module_path),
+ module_name))
def generate_rf_rst_files(file_names, incl_tests=True, incl_keywords=True):