remove unicode prefix from code

Change-Id: Ic6523dfb55fce1c7982bea8ff2a750e9c67aafaf
This commit is contained in:
niuke 2022-08-29 19:14:55 +08:00
parent 168a106085
commit a3ce358aa4

View File

@ -35,8 +35,8 @@ source_suffix = '.rst'
master_doc = 'index' master_doc = 'index'
# General information about the project. # General information about the project.
project = u'python-dracclient' project = 'python-dracclient'
copyright = u'OpenStack Foundation' copyright = 'OpenStack Foundation'
# 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
@ -66,8 +66,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.