Merge "remove unicode prefix from code (1)"

This commit is contained in:
Zuul
2023-12-19 13:38:59 +00:00
committed by Gerrit Code Review
2 changed files with 12 additions and 12 deletions

View File

@@ -187,7 +187,7 @@ latex_elements = {
# (source start file, target name, title, author, documentclass [howto/manual]) # (source start file, target name, title, author, documentclass [howto/manual])
latex_documents = [ latex_documents = [
('index', 'python-heatclient.tex', 'python-heatclient Documentation', ('index', 'python-heatclient.tex', 'python-heatclient Documentation',
u'OpenStack Foundation', 'manual'), 'OpenStack Foundation', '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
@@ -217,8 +217,8 @@ latex_documents = [
# (source start file, name, description, authors, manual section). # (source start file, name, description, authors, manual section).
man_pages = [ man_pages = [
('man/heat', 'heat', ('man/heat', 'heat',
u'Command line access to the heat project.', 'Command line access to the heat project.',
[u'Heat Developers'], 1), ['Heat Developers'], 1),
] ]
# If true, show URL addresses after external links. # If true, show URL addresses after external links.
@@ -231,8 +231,8 @@ man_pages = [
# (source start file, target name, title, author, # (source start file, target name, title, author,
# dir menu entry, description, category) # dir menu entry, description, category)
texinfo_documents = [ texinfo_documents = [
('index', 'Heat', u'Heat Documentation', ('index', 'Heat', 'Heat Documentation',
u'Heat Developers', 'Heat', 'One line description of project.', 'Heat Developers', 'Heat', 'One line description of project.',
'Miscellaneous'), 'Miscellaneous'),
] ]

View File

@@ -64,9 +64,9 @@ source_suffix = '.rst'
master_doc = 'index' master_doc = 'index'
# General information about the project. # General information about the project.
project = u'Python-heatclient releasenotes' project = 'Python-heatclient releasenotes'
copyright = u'2017, Heat team' copyright = '2017, Heat team'
author = u'Heat team' author = 'Heat team'
# The version info for the project you're documenting, acts as replacement for # The version info for the project you're documenting, acts as replacement for
# |version| and |release|, also used in various other places throughout the # |version| and |release|, also used in various other places throughout the
@@ -146,8 +146,8 @@ latex_elements = {
# author, documentclass [howto, manual, or own class]). # author, documentclass [howto, manual, or own class]).
latex_documents = [ latex_documents = [
(master_doc, 'Python-heatclientreleasenotes.tex', (master_doc, 'Python-heatclientreleasenotes.tex',
u'Python-heatclient releasenotes Documentation', 'Python-heatclient releasenotes Documentation',
u'Heat team', 'manual'), 'Heat team', 'manual'),
] ]
@@ -157,7 +157,7 @@ latex_documents = [
# (source start file, name, description, authors, manual section). # (source start file, name, description, authors, manual section).
man_pages = [ man_pages = [
(master_doc, 'python-heatclientreleasenotes', (master_doc, 'python-heatclientreleasenotes',
u'Python-heatclient releasenotes Documentation', 'Python-heatclient releasenotes Documentation',
[author], 1) [author], 1)
] ]
@@ -169,7 +169,7 @@ man_pages = [
# dir menu entry, description, category) # dir menu entry, description, category)
texinfo_documents = [ texinfo_documents = [
(master_doc, 'Python-heatclientreleasenotes', (master_doc, 'Python-heatclientreleasenotes',
u'Python-heatclient releasenotes Documentation', 'Python-heatclient releasenotes Documentation',
author, 'Python-heatclientreleasenotes', author, 'Python-heatclientreleasenotes',
'One line description of project.', 'One line description of project.',
'Miscellaneous'), 'Miscellaneous'),