summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorjapm48 <japm48@users.noreply.github.com>2021-07-30 00:38:55 +0200
committermormj <34754695+mormj@users.noreply.github.com>2021-07-30 20:37:10 -0400
commit18488e31d4ad13077990383f7eb0e1ab7655bf23 (patch)
tree2b9e23427735e918bb0cfb214f4aaa43eb5f9ab5 /docs
parent25c233e65943b8f7b93d39f42f120dedbbbb1cb0 (diff)
pybind11: remove debug message
Signed-off-by: japm48 <japm48@users.noreply.github.com>
Diffstat (limited to 'docs')
-rw-r--r--docs/doxygen/update_pydoc.py4
1 files changed, 0 insertions, 4 deletions
diff --git a/docs/doxygen/update_pydoc.py b/docs/doxygen/update_pydoc.py
index e6b4544423..ccf982ac9b 100644
--- a/docs/doxygen/update_pydoc.py
+++ b/docs/doxygen/update_pydoc.py
@@ -295,8 +295,6 @@ def sub_docstring_in_pydoc_h(pydoc_files, docstrings_dict, output_dir, filter_st
file_in = file_in_tmp
output_pathname = os.path.join(output_dir, os.path.basename(pydoc_file).replace('_template.h','.h'))
- # FIXME: Remove this debug print
- print('output docstrings to {}'.format(output_pathname))
with open(output_pathname,'w') as file_out:
file_out.write(file_in)
@@ -305,8 +303,6 @@ def copy_docstring_templates(pydoc_files, output_dir):
for pydoc_file in pydoc_files:
file_in = open(pydoc_file,'r').read()
output_pathname = os.path.join(output_dir, os.path.basename(pydoc_file).replace('_template.h','.h'))
- # FIXME: Remove this debug print
- print('copy docstrings to {}'.format(output_pathname))
with open(output_pathname,'w') as file_out:
file_out.write(file_in)
status_file.write("DONE")