remove unicode from code

Change-Id: Iadcd21bb61a8bfef399cb918c06bcd960b11ca96
This commit is contained in:
wangjiaqi07 2022-08-25 15:31:32 +08:00
parent 33db4d1d81
commit 6d56e7b6d9
1 changed files with 8 additions and 8 deletions

View File

@ -44,8 +44,8 @@ source_suffix = '.rst'
master_doc = 'index' master_doc = 'index'
# General information about the project. # General information about the project.
project = u'freezer-web-ui' project = 'freezer-web-ui'
copyright = u'2016, OpenStack' copyright = '2016, OpenStack'
# General information about the project. # General information about the project.
openstackdocs_repo_name = 'openstack/freezer-web-ui' openstackdocs_repo_name = 'openstack/freezer-web-ui'
@ -193,8 +193,8 @@ latex_elements = {
# (source start file, target name, title, # (source start file, target name, title,
# author, documentclass [howto, manual, or own class]). # author, documentclass [howto, manual, or own class]).
latex_documents = [ latex_documents = [
('index', 'freezer-web-ui.tex', u'freezer-web-ui Documentation', ('index', 'freezer-web-ui.tex', 'freezer-web-ui Documentation',
u'OpenStack', 'manual'), 'OpenStack', '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
@ -223,8 +223,8 @@ latex_documents = [
# One entry per manual page. List of tuples # One entry per manual page. List of tuples
# (source start file, name, description, authors, manual section). # (source start file, name, description, authors, manual section).
man_pages = [ man_pages = [
('index', 'freezer-web-ui', u'freezer-web-ui Documentation', ('index', 'freezer-web-ui', 'freezer-web-ui Documentation',
[u'OpenStack'], 1) ['OpenStack'], 1)
] ]
# If true, show URL addresses after external links. # If true, show URL addresses after external links.
@ -237,8 +237,8 @@ man_pages = [
# (source start file, target name, title, author, # (source start file, target name, title, author,
# dir menu entry, description, category) # dir menu entry, description, category)
texinfo_documents = [ texinfo_documents = [
('index', 'freezer-web-ui', u'freezer-web-ui Documentation', ('index', 'freezer-web-ui', 'freezer-web-ui Documentation',
u'OpenStack', 'freezer-web-ui', 'One line description of project.', 'OpenStack', 'freezer-web-ui', 'One line description of project.',
'Miscellaneous'), 'Miscellaneous'),
] ]