remove unicode from code

Change-Id: I429379d641295ce91b8f41469b3b25cba917e087
This commit is contained in:
wangjiaqi07 2022-08-25 10:47:09 +08:00
parent 2b112fc493
commit 79b875274a
2 changed files with 14 additions and 14 deletions

View File

@ -43,7 +43,7 @@ source_suffix = '.rst'
master_doc = 'index'
# General information about the project.
copyright = u'2016, OpenStack'
copyright = '2016, OpenStack'
# openstackdocstheme options
openstackdocs_repo_name = 'openstack/python-freezerclient'
@ -187,8 +187,8 @@ latex_elements = {
# (source start file, target name, title,
# author, documentclass [howto, manual, or own class]).
latex_documents = [
('index', 'Freezer.tex', u'Freezer Documentation',
u'OpenStack', 'manual'),
('index', 'Freezer.tex', 'Freezer Documentation',
'OpenStack', 'manual'),
]
# The name of an image file (relative to this directory) to place at the top of
@ -217,8 +217,8 @@ latex_documents = [
# One entry per manual page. List of tuples
# (source start file, name, description, authors, manual section).
man_pages = [
('index', 'freezer', u'Freezer Documentation',
[u'OpenStack'], 1)
('index', 'freezer', 'Freezer Documentation',
['OpenStack'], 1)
]
# If true, show URL addresses after external links.
@ -231,8 +231,8 @@ man_pages = [
# (source start file, target name, title, author,
# dir menu entry, description, category)
texinfo_documents = [
('index', 'Freezer', u'Freezer Documentation',
u'OpenStack', 'Freezer', 'One line description of project.',
('index', 'Freezer', 'Freezer Documentation',
'OpenStack', 'Freezer', 'One line description of project.',
'Miscellaneous'),
]

View File

@ -42,7 +42,7 @@ source_suffix = '.rst'
master_doc = 'index'
# General information about the project.
copyright = u'2016, Freezer developers'
copyright = '2016, Freezer developers'
openstackdocs_repo_name = 'openstack/python-freezerclient'
openstackdocs_bug_project = 'freezer'
@ -186,8 +186,8 @@ latex_elements = {
# author, documentclass [howto, manual, or own class]).
latex_documents = [
('index', 'PythonFreezerClient.tex',
u'Freezer Client Release Notes Documentation',
u'Freezer developers', 'manual'),
'Freezer Client Release Notes Documentation',
'Freezer developers', 'manual'),
]
# The name of an image file (relative to this directory) to place at the top of
@ -217,8 +217,8 @@ latex_documents = [
# (source start file, name, description, authors, manual section).
man_pages = [
('index', 'pythonfreezerclient',
u'Freezer Client Release Notes Documentation',
[u'Freezer developers'], 1)
'Freezer Client Release Notes Documentation',
['Freezer developers'], 1)
]
# If true, show URL addresses after external links.
@ -232,8 +232,8 @@ man_pages = [
# dir menu entry, description, category)
texinfo_documents = [
('index', 'PythonFreezerClient',
u'Freezer Client Release Notes Documentation',
u'Freezer developers', 'PythonFreezerClient',
'Freezer Client Release Notes Documentation',
'Freezer developers', 'PythonFreezerClient',
'One line description of project.', 'Miscellaneous'),
]