Merge "remove unicode from code"

This commit is contained in:
Zuul
2021-01-04 01:07:51 +00:00
committed by Gerrit Code Review
2 changed files with 11 additions and 11 deletions

View File

@@ -36,8 +36,8 @@ source_suffix = '.rst'
master_doc = 'index' master_doc = 'index'
# General information about the project. # General information about the project.
project = u'python-venusclient' project = 'python-venusclient'
copyright = u'2017, OpenStack Developers' copyright = '2017, OpenStack Developers'
# openstackdocstheme options # openstackdocstheme options
openstackdocs_repo_name = 'openstack/python-venusclient' openstackdocs_repo_name = 'openstack/python-venusclient'
@@ -72,8 +72,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 Developers', 'manual'), 'OpenStack Developers', 'manual'),
] ]
# Example configuration for intersphinx: refer to the Python standard library. # Example configuration for intersphinx: refer to the Python standard library.

View File

@@ -51,7 +51,7 @@ source_suffix = '.rst'
master_doc = 'index' master_doc = 'index'
# General information about the project. # General information about the project.
copyright = u'2017, OpenStack Developers' copyright = '2017, OpenStack Developers'
# openstackdocstheme options # openstackdocstheme options
openstackdocs_repo_name = 'openstack/python-venusclient' openstackdocs_repo_name = 'openstack/python-venusclient'
@@ -199,8 +199,8 @@ htmlhelp_basename = 'venusclientReleaseNotesdoc'
# author, documentclass [howto, manual, or own class]). # author, documentclass [howto, manual, or own class]).
latex_documents = [ latex_documents = [
('index', 'venusclientReleaseNotes.tex', ('index', 'venusclientReleaseNotes.tex',
u'venusclient Release Notes Documentation', 'venusclient Release Notes Documentation',
u'OpenStack Foundation', 'manual'), 'OpenStack Foundation', '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
@@ -230,8 +230,8 @@ latex_documents = [
# (source start file, name, description, authors, manual section). # (source start file, name, description, authors, manual section).
man_pages = [ man_pages = [
('index', 'venusclientrereleasenotes', ('index', 'venusclientrereleasenotes',
u'venusclient Release Notes Documentation', 'venusclient Release Notes Documentation',
[u'OpenStack Foundation'], 1) ['OpenStack Foundation'], 1)
] ]
# If true, show URL addresses after external links. # If true, show URL addresses after external links.
@@ -245,8 +245,8 @@ man_pages = [
# dir menu entry, description, category) # dir menu entry, description, category)
texinfo_documents = [ texinfo_documents = [
('index', 'venusclient ReleaseNotes', ('index', 'venusclient ReleaseNotes',
u'venusclient Release Notes Documentation', 'venusclient Release Notes Documentation',
u'OpenStack Foundation', 'venusclientReleaseNotes', 'OpenStack Foundation', 'venusclientReleaseNotes',
'One line description of project.', 'One line description of project.',
'Miscellaneous'), 'Miscellaneous'),
] ]