remove unicode literal from code

Change-Id: I6632c792f7de81821b58847ce40c3158aab3bb81
This commit is contained in:
niuke 2022-07-28 08:28:20 +08:00
parent cf248a33f5
commit 115e5007ea
1 changed files with 6 additions and 6 deletions

View File

@ -35,8 +35,8 @@ source_suffix = '.rst'
master_doc = 'index'
# General information about the project.
project = u'nova-powervm'
copyright = u'2015, IBM'
project = 'nova-powervm'
copyright = '2015, IBM'
# The name of the Pygments (syntax highlighting) style to use.
pygments_style = 'sphinx'
@ -60,8 +60,8 @@ html_last_updated_fmt = '%Y-%m-%d %H:%M'
latex_documents = [
('index',
'%s.tex' % project,
u'%s Documentation' % project,
u'IBM', 'manual'),
'%s Documentation' % project,
'IBM', 'manual'),
]
@ -72,8 +72,8 @@ latex_documents = [
man_pages = [
('index',
'%s' % project,
u'%s Documentation' % project,
u'IBM', 1)
'%s Documentation' % project,
'IBM', 1)
]