summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorAlex Gaynor <alex.gaynor@gmail.com>2021-11-23 15:56:09 -0500
committerGitHub <noreply@github.com>2021-11-24 04:56:09 +0800
commit11b9bc5cb5efd5cafd9fe4cf7a99a1252213025b (patch)
treed760b05856c0d9759239f6cc09888d95a5ff32f2 /doc
parent853fefa6d0d8a5c191648a8870f83fe50d69c1e8 (diff)
downloadpyopenssl-11b9bc5cb5efd5cafd9fe4cf7a99a1252213025b.tar.gz
Remove some more py27-isms (#1062)
Diffstat (limited to 'doc')
-rw-r--r--doc/conf.py10
1 files changed, 5 insertions, 5 deletions
diff --git a/doc/conf.py b/doc/conf.py
index dd8d011..0aeedbf 100644
--- a/doc/conf.py
+++ b/doc/conf.py
@@ -72,9 +72,9 @@ source_suffix = ".rst"
master_doc = "index"
# General information about the project.
-project = u"pyOpenSSL"
-authors = u"The pyOpenSSL developers"
-copyright = u"2001 " + authors
+project = "pyOpenSSL"
+authors = "The pyOpenSSL developers"
+copyright = "2001 " + authors
# The version info for the project you're documenting, acts as replacement for
# |version| and |release|, also used in various other places throughout the
@@ -217,7 +217,7 @@ htmlhelp_basename = "pyOpenSSLdoc"
# Grouping the document tree into LaTeX files. List of tuples
# (source start file, target name, title, author, documentclass [howto/manual])
latex_documents = [
- ("index", "pyOpenSSL.tex", u"pyOpenSSL Documentation", authors, "manual"),
+ ("index", "pyOpenSSL.tex", "pyOpenSSL Documentation", authors, "manual"),
]
# The name of an image file (relative to this directory) to place at the top of
@@ -248,7 +248,7 @@ latex_documents = [
# One entry per manual page. List of tuples
# (source start file, name, description, authors, manual section).
-man_pages = [("index", "pyopenssl", u"pyOpenSSL Documentation", [authors], 1)]
+man_pages = [("index", "pyopenssl", "pyOpenSSL Documentation", [authors], 1)]
intersphinx_mapping = {
"https://docs.python.org/3": None,