remove unicode prefix from code

Change-Id: Ie07ff4f6e4f520fe5b097637fe58bdd076072f39
This commit is contained in:
niuke 2022-08-18 17:36:39 +08:00
parent 5c34b1c52b
commit 03b47c3cbe
2 changed files with 10 additions and 10 deletions

View File

@ -63,7 +63,7 @@ source_suffix = '.rst'
master_doc = 'index' master_doc = 'index'
# General information about the project. # General information about the project.
copyright = u'2021, OpenStack Foundation' copyright = '2021, OpenStack Foundation'
# A list of ignored prefixes for module index sorting. # A list of ignored prefixes for module index sorting.
modindex_common_prefix = ['validations_common.'] modindex_common_prefix = ['validations_common.']
@ -104,8 +104,8 @@ latex_documents = [
( (
'index', 'index',
'doc-validations-common.tex', 'doc-validations-common.tex',
u'Validations Framework Client Documentation', 'Validations Framework Client Documentation',
u'OpenStack LLC', 'OpenStack LLC',
'manual' 'manual'
), ),
] ]

View File

@ -53,9 +53,9 @@ source_suffix = '.rst'
master_doc = 'index' master_doc = 'index'
# General information about the project. # General information about the project.
authors = u'Validations Framework Developers' authors = 'Validations Framework Developers'
project = u'validations-common Release Notes' project = 'validations-common Release Notes'
copyright = u'2020, ' + authors copyright = '2020, ' + authors
# 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.
@ -129,7 +129,7 @@ html_theme = 'openstackdocs'
# The name for this set of Sphinx documents. # The name for this set of Sphinx documents.
# "<project> v<release> documentation" by default. # "<project> v<release> documentation" by default.
# #
# html_title = u'validations-common v1.0' # html_title = 'validations-common v1.0'
# A shorter title for the navigation bar. Default is the same as html_title. # A shorter title for the navigation bar. Default is the same as html_title.
# #
@ -231,7 +231,7 @@ htmlhelp_basename = 'validations-commonReleaseNotesdoc'
# author, documentclass [howto, manual, or own class]). # author, documentclass [howto, manual, or own class]).
latex_documents = [ latex_documents = [
(master_doc, 'validations-commonReleaseNotes.tex', (master_doc, 'validations-commonReleaseNotes.tex',
u'validations-common Release Notes Documentation', 'validations-common Release Notes Documentation',
authors, 'manual'), authors, 'manual'),
] ]
@ -274,7 +274,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, 'validations-commonreleasenotes', (master_doc, 'validations-commonreleasenotes',
u'validations-common Release Notes Documentation', 'validations-common Release Notes Documentation',
[authors], 1) [authors], 1)
] ]
@ -290,7 +290,7 @@ man_pages = [
# dir menu entry, description, category) # dir menu entry, description, category)
texinfo_documents = [ texinfo_documents = [
(master_doc, 'validations-commonReleaseNotes', (master_doc, 'validations-commonReleaseNotes',
u'validations-common Release Notes Documentation', 'validations-common Release Notes Documentation',
authors, 'validations-commonReleaseNotes', authors, 'validations-commonReleaseNotes',
'A collection of Ansible playbooks to detect and report potential issues during TripleO deployments.', 'A collection of Ansible playbooks to detect and report potential issues during TripleO deployments.',
'Miscellaneous'), 'Miscellaneous'),