[Python-checkins] Doc: Fix spurious comma in the author metadata field (GH-32386)

ned-deily webhook-mailer at python.org
Thu Apr 7 14:27:31 EDT 2022


https://github.com/python/cpython/commit/1df4298b62fcc124ba9de861f8dc8239ad72cde2
commit: 1df4298b62fcc124ba9de861f8dc8239ad72cde2
branch: main
author: CAM Gerlach <CAM.Gerlach at Gerlach.CAM>
committer: ned-deily <nad at python.org>
date: 2022-04-07T14:27:14-04:00
summary:

Doc: Fix spurious comma in the author metadata field (GH-32386)

Signed-off-by: C.A.M. Gerlach <CAM.Gerlach at Gerlach.CAM>

files:
M Doc/conf.py

diff --git a/Doc/conf.py b/Doc/conf.py
index 1aadd961b6ef0..e539da539e655 100644
--- a/Doc/conf.py
+++ b/Doc/conf.py
@@ -139,7 +139,7 @@
 
 # Grouping the document tree into LaTeX files. List of tuples
 # (source start file, target name, title, author, document class [howto/manual]).
-_stdauthor = r'Guido van Rossum\\and the Python development team'
+_stdauthor = 'Guido van Rossum and the Python development team'
 latex_documents = [
     ('c-api/index', 'c-api.tex',
      'The Python/C API', _stdauthor, 'manual'),



More information about the Python-checkins mailing list