remove unicode from code

Change-Id: I411ab8fb6783f0baa1d751de36649cddc8a06014
This commit is contained in:
xuanyandong 2021-01-03 15:14:05 +08:00
parent 389f8917cd
commit 069d60ad37
2 changed files with 15 additions and 15 deletions

View File

@ -37,8 +37,8 @@ source_suffix = '.rst'
master_doc = 'index'
# General information about the project.
project = u'bashate'
copyright = u'2017, Bashate Authors'
project = 'bashate'
copyright = '2017, Bashate Authors'
# If true, '()' will be appended to :func: etc. cross-reference text.
add_function_parentheses = True
@ -57,10 +57,10 @@ openstackdocs_bug_tag = ''
openstackdocs_pdf_link = True
# Grouping the document tree for man pages.
# List of tuples 'sourcefile', 'target', u'title', u'Authors name', 'manual'
# List of tuples 'sourcefile', 'target', 'title', 'Authors name', 'manual'
man_pages = [
('man/bashate', 'bashate', u'Style checker for bash scripts',
[u'OpenStack Foundation'], 1),
('man/bashate', 'bashate', 'Style checker for bash scripts',
['OpenStack Foundation'], 1),
]
@ -82,8 +82,8 @@ htmlhelp_basename = '%sdoc' % project
latex_documents = [
('index',
'doc-%s.tex' % project,
u'Bashate Documentation',
u'Bashate Authors', 'manual'),
'Bashate Documentation',
'Bashate Authors', 'manual'),
]
# Example configuration for intersphinx: refer to the Python standard library.

View File

@ -55,8 +55,8 @@ source_suffix = '.rst'
master_doc = 'index'
# General information about the project.
project = u'Bashate Release Notes'
copyright = u'2017, Bashate Developers'
project = 'Bashate Release Notes'
copyright = '2017, Bashate Developers'
# Release notes are version independent
# The full version, including alpha/beta/rc tags.
@ -207,8 +207,8 @@ latex_elements = {
# author, documentclass [howto, manual, or own class]).
latex_documents = [
('index', 'BashateReleaseNotes.tex',
u'Bashate Release Notes Documentation',
u'Bashate Developers', 'manual'),
'Bashate Release Notes Documentation',
'Bashate Developers', 'manual'),
]
# The name of an image file (relative to this directory) to place at the top of
@ -237,8 +237,8 @@ latex_documents = [
# One entry per manual page. List of tuples
# (source start file, name, description, authors, manual section).
man_pages = [
('index', 'bashatereleasenotes', u'Bashate Release Notes Documentation',
[u'Bashate Developers'], 1)
('index', 'bashatereleasenotes', 'Bashate Release Notes Documentation',
['Bashate Developers'], 1)
]
# If true, show URL addresses after external links.
@ -251,8 +251,8 @@ man_pages = [
# (source start file, target name, title, author,
# dir menu entry, description, category)
texinfo_documents = [
('index', 'BashateReleaseNotes', u'Bashate Release Notes Documentation',
u'Bashate Developers', 'BashateReleaseNotes',
('index', 'BashateReleaseNotes', 'Bashate Release Notes Documentation',
'Bashate Developers', 'BashateReleaseNotes',
'Style Checker for Bash.',
'Miscellaneous'),
]