From b96e229c955cf22ebd4af50b0afb2289b8cd74c9 Mon Sep 17 00:00:00 2001 From: Bruno Oliveira Date: Thu, 1 Apr 2021 10:12:46 -0300 Subject: [PATCH] Fix plugin-list label in the docs (#8505) Last time I "fixed" this I left a `\` at the start of the string to avoid an initial newline, but didn't realize it was a raw string. This should fix it now for good. --- doc/en/reference/plugin_list.rst | 2 +- scripts/update-plugin-list.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/en/reference/plugin_list.rst b/doc/en/reference/plugin_list.rst index 40c782cf6..8f47f5ba7 100644 --- a/doc/en/reference/plugin_list.rst +++ b/doc/en/reference/plugin_list.rst @@ -1,4 +1,4 @@ -\ + .. _plugin-list: Plugin List diff --git a/scripts/update-plugin-list.py b/scripts/update-plugin-list.py index 4e00f1a45..4337e8f58 100644 --- a/scripts/update-plugin-list.py +++ b/scripts/update-plugin-list.py @@ -6,7 +6,7 @@ import packaging.version import requests import tabulate -FILE_HEAD = r"""\ +FILE_HEAD = r""" .. _plugin-list: Plugin List