From 9251febafb1dbe1e16cc35deab900e54716b8b69 Mon Sep 17 00:00:00 2001 From: Marc Bonnici Date: Tue, 8 May 2018 13:57:40 +0100 Subject: [PATCH] doc/build_plugin_doc: Fix typo in function name --- doc/build_plugin_docs.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/build_plugin_docs.py b/doc/build_plugin_docs.py index c623055a..0092ce25 100755 --- a/doc/build_plugin_docs.py +++ b/doc/build_plugin_docs.py @@ -55,11 +55,11 @@ def generate_plugin_documentation(source_dir, outdir, ignore_paths): title = ' '.join([capitalize(w) for w in ext_type.split('_')]) wfh.write(underline('{}s'.format(title))) wfh.write(insert_contents_table()) - wfh.write(break_line()) + wfh.write(line_break()) exts = pluginloader.list_plugins(ext_type) for ext in sorted(exts, key=lambda x: x.name): wfh.write(get_rst_from_plugin(ext)) - wfh.write(break_line()) + wfh.write(line_break()) def generate_target_documentation(outdir):