Merge "remove unicode from code"

This commit is contained in:
Zuul 2021-04-16 10:50:48 +00:00 committed by Gerrit Code Review
commit b5b4d46591
2 changed files with 12 additions and 12 deletions

View File

@ -45,8 +45,8 @@ source_suffix = '.rst'
master_doc = 'index' master_doc = 'index'
# General information about the project. # General information about the project.
project = u'oslo.service' project = 'oslo.service'
copyright = u'2014, OpenStack Foundation' copyright = '2014, 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
@ -76,6 +76,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

@ -60,8 +60,8 @@ source_suffix = '.rst'
master_doc = 'index' master_doc = 'index'
# General information about the project. # General information about the project.
project = u'oslo.service Release Notes' project = 'oslo.service Release Notes'
copyright = u'2016, oslo.service Developers' copyright = '2016, oslo.service Developers'
# Release notes do not need a version in the title, they span # Release notes do not need a version in the title, they span
# multiple versions. # multiple versions.
@ -208,8 +208,8 @@ latex_elements = {
# author, documentclass [howto, manual, or own class]). # author, documentclass [howto, manual, or own class]).
latex_documents = [ latex_documents = [
('index', 'oslo.serviceReleaseNotes.tex', ('index', 'oslo.serviceReleaseNotes.tex',
u'oslo.service Release Notes Documentation', 'oslo.service Release Notes Documentation',
u'oslo.service Developers', 'manual'), 'oslo.service 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
@ -239,8 +239,8 @@ latex_documents = [
# (source start file, name, description, authors, manual section). # (source start file, name, description, authors, manual section).
man_pages = [ man_pages = [
('index', 'oslo.serviceReleaseNotes', ('index', 'oslo.serviceReleaseNotes',
u'oslo.service Release Notes Documentation', 'oslo.service Release Notes Documentation',
[u'oslo.service Developers'], 1) ['oslo.service Developers'], 1)
] ]
# If true, show URL addresses after external links. # If true, show URL addresses after external links.
@ -254,8 +254,8 @@ man_pages = [
# dir menu entry, description, category) # dir menu entry, description, category)
texinfo_documents = [ texinfo_documents = [
('index', 'oslo.serviceReleaseNotes', ('index', 'oslo.serviceReleaseNotes',
u'oslo.service Release Notes Documentation', 'oslo.service Release Notes Documentation',
u'oslo.service Developers', 'oslo.serviceReleaseNotes', 'oslo.service Developers', 'oslo.serviceReleaseNotes',
'Provides a framework for defining new long-running services using the' 'Provides a framework for defining new long-running services using the'
' patterns established by other OpenStack applications', ' patterns established by other OpenStack applications',
'Miscellaneous'), 'Miscellaneous'),