Amended plugin list script for moved file.

This commit is contained in:
Daniele Procida 2021-03-14 20:40:50 +00:00
parent d171a3f52d
commit 64107be443
2 changed files with 1 additions and 3 deletions

View File

@ -58,5 +58,3 @@ pytest development environment
:maxdepth: 1
bash-completion

View File

@ -74,7 +74,7 @@ def iter_plugins():
def main():
plugins = list(iter_plugins())
plugin_table = tabulate.tabulate(plugins, headers="keys", tablefmt="rst")
plugin_list = pathlib.Path("doc", "en", "plugin_list.rst")
plugin_list = pathlib.Path("doc", "en", "reference", "plugin_list.rst")
with plugin_list.open("w") as f:
f.write(FILE_HEAD)
f.write(f"This list contains {len(plugins)} plugins.\n\n")