Remove unnecessary unicode prefixes

Change-Id: I89d9b80a54a283664502c84ae07b992c4a4172ab
This commit is contained in:
Hervé Beraud 2022-04-20 12:16:47 +02:00
parent 5d75103724
commit c1987c3a44
2 changed files with 12 additions and 12 deletions

View File

@ -47,8 +47,8 @@ source_suffix = '.rst'
master_doc = 'index' master_doc = 'index'
# General information about the project. # General information about the project.
project = u'automaton' project = 'automaton'
copyright = u'2013, OpenStack Foundation' copyright = '2013, OpenStack Foundation'
# If true, '()' will be appended to :func: etc. cross-reference text. # If true, '()' will be appended to :func: etc. cross-reference text.
add_function_parentheses = True add_function_parentheses = True
@ -78,6 +78,6 @@ htmlhelp_basename = '%sdoc' % project
latex_documents = [ latex_documents = [
('index', ('index',
'%s.tex' % project, '%s.tex' % project,
u'%s Documentation' % project, '%s Documentation' % project,
u'OpenStack Foundation', 'manual'), 'OpenStack Foundation', 'manual'),
] ]

View File

@ -55,8 +55,8 @@ source_suffix = '.rst'
master_doc = 'index' master_doc = 'index'
# General information about the project. # General information about the project.
project = u'automaton Release Notes' project = 'automaton Release Notes'
copyright = u'2016, automaton Developers' copyright = '2016, automaton Developers'
# Release notes do not need a version number in the title, they # Release notes do not need a version number in the title, they
@ -207,8 +207,8 @@ latex_elements = {
# author, documentclass [howto, manual, or own class]). # author, documentclass [howto, manual, or own class]).
latex_documents = [ latex_documents = [
('index', 'automatonReleaseNotes.tex', ('index', 'automatonReleaseNotes.tex',
u'automaton Release Notes Documentation', 'automaton Release Notes Documentation',
u'automaton Developers', 'manual'), 'automaton Developers', 'manual'),
] ]
# The name of an image file (relative to this directory) to place at the top of # The name of an image file (relative to this directory) to place at the top of
@ -238,8 +238,8 @@ latex_documents = [
# (source start file, name, description, authors, manual section). # (source start file, name, description, authors, manual section).
man_pages = [ man_pages = [
('index', 'automatonreleasenotes', ('index', 'automatonreleasenotes',
u'automaton Release Notes Documentation', 'automaton Release Notes Documentation',
[u'automaton Developers'], 1) ['automaton Developers'], 1)
] ]
# If true, show URL addresses after external links. # If true, show URL addresses after external links.
@ -253,8 +253,8 @@ man_pages = [
# dir menu entry, description, category) # dir menu entry, description, category)
texinfo_documents = [ texinfo_documents = [
('index', 'automatonReleaseNotes', ('index', 'automatonReleaseNotes',
u'automaton Release Notes Documentation', 'automaton Release Notes Documentation',
u'automaton Developers', 'automatonReleaseNotes', 'automaton Developers', 'automatonReleaseNotes',
'An OpenStack library for parsing configuration options from the command' 'An OpenStack library for parsing configuration options from the command'
' line and configuration files.', ' line and configuration files.',
'Miscellaneous'), 'Miscellaneous'),