From 18488e31d4ad13077990383f7eb0e1ab7655bf23 Mon Sep 17 00:00:00 2001 From: japm48 <japm48@users.noreply.github.com> Date: Fri, 30 Jul 2021 00:38:55 +0200 Subject: pybind11: remove debug message Signed-off-by: japm48 <japm48@users.noreply.github.com> --- docs/doxygen/update_pydoc.py | 4 ---- 1 file changed, 4 deletions(-) (limited to 'docs/doxygen/update_pydoc.py') 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") -- cgit v1.2.3