Merge "remove unicode from code"

This commit is contained in:
Zuul 2022-08-19 12:48:55 +00:00 committed by Gerrit Code Review
commit f59cd73e30
2 changed files with 10 additions and 10 deletions

View File

@ -160,7 +160,7 @@ source_suffix = '.rst'
master_doc = 'index'
# General information about the project.
copyright = u'2016, OpenStack Foundation'
copyright = '2016, OpenStack Foundation'
# A list of ignored prefixes for module index sorting.
@ -198,8 +198,8 @@ latex_use_xindy = False
latex_documents = [
('index',
'doc-ironic-ui.tex',
u'Ironic UI Documentation',
u'OpenStack Foundation', 'manual'),
'Ironic UI Documentation',
'OpenStack Foundation', 'manual'),
]
# Example configuration for intersphinx: refer to the Python standard library.

View File

@ -62,9 +62,9 @@ source_suffix = '.rst'
master_doc = 'index'
# General information about the project.
project = u'ironic-ui'
copyright = u'2016, OpenStack'
author = u'OpenStack'
project = 'ironic-ui'
copyright = '2016, OpenStack'
author = 'OpenStack'
# Release notes are version independent
# The short X.Y version.
@ -269,8 +269,8 @@ latex_elements = {
# (source start file, target name, title,
# author, documentclass [howto, manual, or own class]).
latex_documents = [
(master_doc, 'ironic-ui.tex', u'ironic-ui Documentation',
u'OpenStack', 'manual'),
(master_doc, 'ironic-ui.tex', 'ironic-ui Documentation',
'OpenStack', 'manual'),
]
# The name of an image file (relative to this directory) to place at the top of
@ -311,7 +311,7 @@ latex_documents = [
# One entry per manual page. List of tuples
# (source start file, name, description, authors, manual section).
man_pages = [
(master_doc, 'ironic-ui', u'ironic-ui Documentation',
(master_doc, 'ironic-ui', 'ironic-ui Documentation',
[author], 1)
]
@ -326,7 +326,7 @@ man_pages = [
# (source start file, target name, title, author,
# dir menu entry, description, category)
texinfo_documents = [
(master_doc, 'ironic-ui', u'ironic-ui Documentation',
(master_doc, 'ironic-ui', 'ironic-ui Documentation',
author, 'ironic-ui', 'One line description of project.',
'Miscellaneous'),
]