remove unicode from code

Change-Id: I53806b451b7a58642f47f1152e82490080f89f9f
This commit is contained in:
zhangtongjian 2021-01-05 16:42:00 +08:00
parent 950f9dd50d
commit 7815cffbab
1 changed files with 4 additions and 4 deletions

View File

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