remove unicode prefix from code

Change-Id: I716442a44cdb0cd651cfed8419713c6d76f2ba14
This commit is contained in:
niuke 2022-08-24 19:46:44 +08:00
parent 07d4e86ca4
commit 0ee5e17ee5
2 changed files with 12 additions and 12 deletions

View File

@ -44,8 +44,8 @@ source_suffix = '.rst'
master_doc = 'index' master_doc = 'index'
# General information about the project. # General information about the project.
project = u'python-cloudkittyclient' project = 'python-cloudkittyclient'
copyright = u'2017, OpenStack Foundation' copyright = '2017, OpenStack Foundation'
# openstackdocstheme options # openstackdocstheme options
repository_name = 'openstack/python-cloudkittyclient' repository_name = 'openstack/python-cloudkittyclient'
@ -99,8 +99,8 @@ latex_elements = {
latex_documents = [ latex_documents = [
('index', ('index',
'doc-%s.tex' % project, 'doc-%s.tex' % project,
u'%s Documentation' % project, '%s Documentation' % project,
u'OpenStack Foundation', 'howto', True), 'OpenStack Foundation', 'howto', True),
] ]
# Example configuration for intersphinx: refer to the Python standard library. # Example configuration for intersphinx: refer to the Python standard library.

View File

@ -42,8 +42,8 @@ source_suffix = '.rst'
master_doc = 'index' master_doc = 'index'
# General information about the project. # General information about the project.
project = u'CloudKitty Client Release Notes' project = 'CloudKitty Client Release Notes'
copyright = u'2016, CloudKitty developers' copyright = '2016, CloudKitty developers'
# Release notes are version independent. # Release notes are version independent.
# The short X.Y version. # The short X.Y version.
@ -194,8 +194,8 @@ latex_elements = {
# author, documentclass [howto, manual, or own class]). # author, documentclass [howto, manual, or own class]).
latex_documents = [ latex_documents = [
('index', 'PythonCloudKittyClient.tex', ('index', 'PythonCloudKittyClient.tex',
u'CloudKitty Client Release Notes Documentation', 'CloudKitty Client Release Notes Documentation',
u'CloudKitty developers', 'manual'), 'CloudKitty developers', 'manual'),
] ]
# The name of an image file (relative to this directory) to place at the top of # The name of an image file (relative to this directory) to place at the top of
@ -225,8 +225,8 @@ latex_documents = [
# (source start file, name, description, authors, manual section). # (source start file, name, description, authors, manual section).
man_pages = [ man_pages = [
('index', 'cloudkittyclient', ('index', 'cloudkittyclient',
u'CloudKitty Client Release Notes Documentation', 'CloudKitty Client Release Notes Documentation',
[u'CloudKitty developers'], 1) ['CloudKitty developers'], 1)
] ]
# If true, show URL addresses after external links. # If true, show URL addresses after external links.
@ -240,8 +240,8 @@ man_pages = [
# dir menu entry, description, category) # dir menu entry, description, category)
texinfo_documents = [ texinfo_documents = [
('index', 'cloudkittyclient', ('index', 'cloudkittyclient',
u'CloudKitty Client Release Notes Documentation', 'CloudKitty Client Release Notes Documentation',
u'CloudKitty Client developers', 'CloudKittyClient', 'CloudKitty Client developers', 'CloudKittyClient',
'One line description of project.', 'Miscellaneous'), 'One line description of project.', 'Miscellaneous'),
] ]