summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorAarni Koskela <akx@iki.fi>2023-01-18 20:59:35 +0200
committerAarni Koskela <akx@iki.fi>2023-01-18 21:20:51 +0200
commit5f7580d40523ce8aa67f51a3eb941dc81faa47f2 (patch)
treefd92fba1f801935c8e21bbfa601c98e74890fa75 /docs
parent65d9ae36ecb9d4a4691ffb9f21f3ff11e6ff5739 (diff)
downloadbabel-5f7580d40523ce8aa67f51a3eb941dc81faa47f2.tar.gz
Apply ruff UP025 (unicode literal prefix) fix
Diffstat (limited to 'docs')
-rw-r--r--docs/conf.py14
1 files changed, 7 insertions, 7 deletions
diff --git a/docs/conf.py b/docs/conf.py
index 84bbd7e..5118f72 100644
--- a/docs/conf.py
+++ b/docs/conf.py
@@ -43,8 +43,8 @@ source_suffix = '.rst'
master_doc = 'index'
# General information about the project.
-project = u'Babel'
-copyright = u'2022, The Babel Team'
+project = 'Babel'
+copyright = '2022, The Babel Team'
# The version info for the project you're documenting, acts as replacement for
# |version| and |release|, also used in various other places throughout the
@@ -194,8 +194,8 @@ latex_elements = {
# Grouping the document tree into LaTeX files. List of tuples
# (source start file, target name, title, author, documentclass [howto/manual]).
latex_documents = [
- ('index', 'Babel.tex', u'Babel Documentation',
- u'The Babel Team', 'manual'),
+ ('index', 'Babel.tex', 'Babel Documentation',
+ 'The Babel Team', 'manual'),
]
# The name of an image file (relative to this directory) to place at the top of
@@ -224,7 +224,7 @@ latex_logo = '_static/logo.png'
# One entry per manual page. List of tuples
# (source start file, name, description, authors, manual section).
man_pages = [
- ('index', 'babel', u'Babel Documentation', [u'The Babel Team'], 1),
+ ('index', 'babel', 'Babel Documentation', ['The Babel Team'], 1),
]
# If true, show URL addresses after external links.
@@ -237,8 +237,8 @@ man_pages = [
# (source start file, target name, title, author,
# dir menu entry, description, category)
texinfo_documents = [
- ('index_', 'Babel', u'Babel Documentation',
- u'The Babel Team', 'Babel', 'One line description of project.',
+ ('index_', 'Babel', 'Babel Documentation',
+ 'The Babel Team', 'Babel', 'One line description of project.',
'Miscellaneous'),
]