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.
This commit is contained in:
Lubomir Rintel 2022-09-07 12:08:48 +02:00
parent d3ffd2f90a
commit 8af1404e54

View file

@ -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)