remove unicode literal from code

Change-Id: I0c72543f8ea4e50c2e5731fec44cb4555647476c
This commit is contained in:
LiZekun 2022-05-26 16:27:10 +08:00
parent 189334067a
commit 3097ffa64d
1 changed files with 4 additions and 4 deletions

View File

@ -55,8 +55,8 @@ source_suffix = '.rst'
master_doc = 'index'
# General information about the project.
project = u'zaqar-specs'
copyright = u'%s, OpenStack Foundation' % datetime.date.today().year
project = 'zaqar-specs'
copyright = '%s, OpenStack Foundation' % datetime.date.today().year
# If true, '()' will be appended to :func: etc. cross-reference text.
add_function_parentheses = True
@ -92,8 +92,8 @@ htmlhelp_basename = '%sdoc' % project
latex_documents = [
('index',
'%s.tex' % project,
u'%s Documentation' % project,
u'OpenStack Foundation', 'manual'),
'%s Documentation' % project,
'OpenStack Foundation', 'manual'),
]
# Example configuration for intersphinx: refer to the Python standard library.