remove unicode from code

Change-Id: Ibaff5c2743ca12a0692d0c5715fd2654f97d714c
This commit is contained in:
zhangtongjian 2021-01-05 17:29:01 +08:00
parent 77a40a9938
commit 2712307e21
1 changed files with 6 additions and 6 deletions

View File

@ -48,8 +48,8 @@ source_suffix = '.rst'
master_doc = 'index'
# General information about the project.
project = u'Ironic Specs'
copyright = u'%s, OpenStack Ironic Team' % datetime.date.today().year
project = 'Ironic Specs'
copyright = '%s, OpenStack Ironic Team' % datetime.date.today().year
# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
@ -178,8 +178,8 @@ latex_elements = {
# Grouping the document tree into LaTeX files. List of tuples
# (source start file, target name, title, author, documentclass [howto/manual]).
latex_documents = [
('index', 'doc-ironic-specs.tex', u'Ironic Specs',
u'OpenStack Ironic Team', 'manual'),
('index', 'doc-ironic-specs.tex', 'Ironic Specs',
'OpenStack Ironic Team', 'manual'),
]
# The name of an image file (relative to this directory) to place at the top of
@ -208,8 +208,8 @@ latex_documents = [
# (source start file, target name, title, author,
# dir menu entry, description, category)
texinfo_documents = [
('index', 'Ironic-specs', u'Ironic Design Specs',
u'OpenStack Ironic Team', 'ironic-specs', 'Design specifications for the Ironic project.',
('index', 'Ironic-specs', 'Ironic Design Specs',
'OpenStack Ironic Team', 'ironic-specs', 'Design specifications for the Ironic project.',
'Miscellaneous'),
]