docs/conf.py: fix mixed indentation

This commit is contained in:
Jan-Niklas Burfeind 2022-12-16 23:40:41 +01:00
parent cdcd1452a2
commit 6c4a0ae373

View File

@ -137,7 +137,7 @@ latex_elements = {
# author, documentclass [howto, manual, or own class]). # author, documentclass [howto, manual, or own class]).
latex_documents = [ latex_documents = [
(master_doc, 'Gluon.tex', 'Gluon Documentation', (master_doc, 'Gluon.tex', 'Gluon Documentation',
'Project Gluon', 'manual'), 'Project Gluon', 'manual'),
] ]
@ -147,7 +147,7 @@ latex_documents = [
# (source start file, name, description, authors, manual section). # (source start file, name, description, authors, manual section).
man_pages = [ man_pages = [
(master_doc, 'gluon', 'Gluon Documentation', (master_doc, 'gluon', 'Gluon Documentation',
[author], 1) [author], 1)
] ]
@ -158,8 +158,8 @@ man_pages = [
# dir menu entry, description, category) # dir menu entry, description, category)
texinfo_documents = [ texinfo_documents = [
(master_doc, 'Gluon', 'Gluon Documentation', (master_doc, 'Gluon', 'Gluon Documentation',
author, 'Gluon', 'One line description of project.', author, 'Gluon', 'One line description of project.',
'Miscellaneous'), 'Miscellaneous'),
] ]