Skip to content
This repository was archived by the owner on Dec 22, 2023. It is now read-only.

Commit 9c6a8d0

Browse files
committed
doc/conf.py: strip extra whitespace before module docstring for man pages
1 parent 1584fa4 commit 9c6a8d0

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

doc/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -255,7 +255,7 @@
255255
# One entry per manual page. List of tuples
256256
# (source start file, name, description, authors, manual section).
257257
man_pages = [
258-
('man/%s' % script, script, import_module(module).__doc__.split('\n', 1)[0], authors_list, 1)
258+
('man/%s' % script, script, import_module(module).__doc__.strip().split('\n', 1)[0], authors_list, 1)
259259
for module, script in generated_man_pages
260260
]
261261

0 commit comments

Comments
 (0)