Remove unnecessary unicode prefixes

Change-Id: Ibc10c61ee39731501867196ac6fa95b9d6d6c91d
This commit is contained in:
Hervé Beraud
2022-04-20 13:16:37 +02:00
parent cdf302f853
commit be5b93831f
2 changed files with 12 additions and 12 deletions

View File

@@ -54,8 +54,8 @@ source_suffix = '.rst'
master_doc = 'index' master_doc = 'index'
# General information about the project. # General information about the project.
project = u'Blazar dashboard' project = 'Blazar dashboard'
copyright = u'2017, OpenStack Foundation' copyright = '2017, OpenStack Foundation'
# The language for content autogenerated by Sphinx. Refer to documentation # The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages. # for a list of supported languages.
@@ -195,6 +195,6 @@ latex_use_xindy = False
latex_documents = [ latex_documents = [
('index', 'doc-blazar-dashboard.tex', ('index', 'doc-blazar-dashboard.tex',
u'Blazar Dashboard Documentation', 'Blazar Dashboard Documentation',
u'OpenStack', 'howto', True), 'OpenStack', 'howto', True),
] ]

View File

@@ -61,8 +61,8 @@ source_suffix = '.rst'
master_doc = 'index' master_doc = 'index'
# General information about the project. # General information about the project.
project = u'Blazar dashboard Release Notes' project = 'Blazar dashboard Release Notes'
copyright = u'2017, OpenStack Foundation' copyright = '2017, OpenStack Foundation'
# Release notes are version independent # Release notes are version independent
# The full version, including alpha/beta/rc tags. # The full version, including alpha/beta/rc tags.
@@ -209,8 +209,8 @@ latex_elements = {
latex_documents = [ latex_documents = [
('index', ('index',
'Blazar-dashboardReleaseNotes.tex', 'Blazar-dashboardReleaseNotes.tex',
u'Blazar dashboard Release Notes Documentation', 'Blazar dashboard Release Notes Documentation',
u'Blazar dashboard Developers', 'Blazar dashboard Developers',
'manual'), 'manual'),
] ]
@@ -241,8 +241,8 @@ latex_documents = [
# (source start file, name, description, authors, manual section). # (source start file, name, description, authors, manual section).
man_pages = [ man_pages = [
('index', 'blazar_dashboardreleasenotes', ('index', 'blazar_dashboardreleasenotes',
u'Blazar dashboard Release Notes Documentation', 'Blazar dashboard Release Notes Documentation',
[u'Blazar dashboard Developers'], 1) ['Blazar dashboard Developers'], 1)
] ]
# If true, show URL addresses after external links. # If true, show URL addresses after external links.
@@ -256,8 +256,8 @@ man_pages = [
# dir menu entry, description, category) # dir menu entry, description, category)
texinfo_documents = [ texinfo_documents = [
('index', 'Blazar-dashboardReleaseNotes', ('index', 'Blazar-dashboardReleaseNotes',
u'Blazar dashboard Release Notes Documentation', 'Blazar dashboard Release Notes Documentation',
u'Blazar dashboard Developers', 'Blazar-dashboardReleaseNotes', 'Blazar dashboard Developers', 'Blazar-dashboardReleaseNotes',
'Resource reservation service for OpenStack', 'Resource reservation service for OpenStack',
'Miscellaneous'), 'Miscellaneous'),
] ]