remove unicode prefix from code

All strings are considered as unicode string from Python 3.

This patch drops the explicit unicode literal (u'...')
appearances from the unicode strings.

Change-Id: Ib48cebaaaf7802f82af8ab46a5cce66c42273a7a
This commit is contained in:
niuke 2022-08-12 19:29:13 +08:00 committed by Ke Niu
parent d3c6dd2c0c
commit 443e97c736
1 changed files with 4 additions and 4 deletions

View File

@ -43,8 +43,8 @@ source_suffix = '.rst'
master_doc = 'index'
# General information about the project.
project = u'os-api-ref'
copyright = u'2018, The contributors'
project = 'os-api-ref'
copyright = '2018, The contributors'
# If true, '()' will be appended to :func: etc. cross-reference text.
add_function_parentheses = True
@ -75,6 +75,6 @@ htmlhelp_basename = '%sdoc' % project
latex_documents = [
('index',
'%s.tex' % project,
u'%s Documentation' % project,
u'OpenStack Foundation', 'manual'),
'%s Documentation' % project,
'OpenStack Foundation', 'manual'),
]