From 8af1404e54fea5bb038afd6d3e662540f9bda19f Mon Sep 17 00:00:00 2001 From: Lubomir Rintel Date: Wed, 7 Sep 2022 12:08:48 +0200 Subject: [PATCH] generate-docs-nm-settings-docs-gir: remove space from the beginning of a para From nm-settings-dbus(5): Before (ugly, offensive, possibly in violation of geneva protocol): ... | set, the authentication retries for 3 | times before failing the connection. | | Currently, this only applies to 802-1x | authentication. After (beautiful, smells good, in harmony with nature): ... | set, the authentication retries for 3 | times before failing the connection. | | Currently, this only applies to 802-1x | authentication. --- tools/generate-docs-nm-settings-docs-gir.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tools/generate-docs-nm-settings-docs-gir.py b/tools/generate-docs-nm-settings-docs-gir.py index 0024c13e73..88b87a7233 100755 --- a/tools/generate-docs-nm-settings-docs-gir.py +++ b/tools/generate-docs-nm-settings-docs-gir.py @@ -130,11 +130,11 @@ def format_docs(doc_xml): doc = "" for l in lines: if l: - doc += " " + l + doc += l + " " else: - doc += "\n\n" + doc = doc.strip(" ") + "\n\n" - doc = doc.strip("\n") + doc = doc.strip("\n ") # Expand constants doc = re.sub(r"%([^%]\w*)", lambda match: constants[match.group(1)], doc)