remove unicode literal from code

Change-Id: I0423e01ff42936561f3d40c62f0a54f5951f776d
This commit is contained in:
niuke 2022-08-06 21:01:31 +08:00
parent 47788ab5b5
commit a0e46ac56e
1 changed files with 9 additions and 9 deletions

View File

@ -54,9 +54,9 @@ master_doc = 'index'
# General information about the project.
openstackdocs_repo_name = 'openstack/openstack-doc-tools'
openstackdocs_auto_name = False
openstackdocs_bug_tag = u'openstack-doc-tools'
project = u'OpenStack-doc-tools Release Notes'
copyright = u'2015-2017, OpenStack Documentation team'
openstackdocs_bug_tag = 'openstack-doc-tools'
project = 'OpenStack-doc-tools Release Notes'
copyright = '2015-2017, OpenStack Documentation team'
# Release notes are version independent.
# The full version, including alpha/beta/rc tags.
@ -191,8 +191,8 @@ htmlhelp_basename = 'OpenStack-Doc-Tools-ReleaseNotesdoc'
# author, documentclass [howto, manual, or own class]).
latex_documents = [
('index', 'OpenStack-Doc-Tools-ReleaseNotes.tex',
u'OpenStack-Doc-Tools Release Notes Documentation',
u'Documentation Team', 'manual'),
'OpenStack-Doc-Tools Release Notes Documentation',
'Documentation Team', 'manual'),
]
# The name of an image file (relative to this directory) to place at the top of
@ -222,8 +222,8 @@ latex_documents = [
# (source start file, name, description, authors, manual section).
man_pages = [
('index', 'openstack-doc-tools-releasenotes',
u'OpenStack-Doc-Tools Release Notes Documentation',
[u'Documentation team'], 1)
'OpenStack-Doc-Tools Release Notes Documentation',
['Documentation team'], 1)
]
# If true, show URL addresses after external links.
@ -237,8 +237,8 @@ man_pages = [
# dir menu entry, description, category)
texinfo_documents = [
('index', 'OpenStack-Doc-Tools-ReleaseNotes',
u'OpenStack-Doc-Tools Release Notes Documentation',
u'Documentation Team', 'OpenStack-Doc-Tools-ReleaseNotes',
'OpenStack-Doc-Tools Release Notes Documentation',
'Documentation Team', 'OpenStack-Doc-Tools-ReleaseNotes',
'One line description of project.',
'Miscellaneous'),
]