From 5f7580d40523ce8aa67f51a3eb941dc81faa47f2 Mon Sep 17 00:00:00 2001 From: Aarni Koskela Date: Wed, 18 Jan 2023 20:59:35 +0200 Subject: Apply ruff UP025 (unicode literal prefix) fix --- docs/conf.py | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'docs/conf.py') 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'), ] -- cgit v1.2.1