Dropping explicit unicode literal

In python 3, all strings are considered as unicode string.

This patch drops the explicit unicode literal (u'...')
or (u"..") appearances from the unicode strings.

Change-Id: I8cf2c7a1532e1df454321387a2d49e3f1e5ed1b7
This commit is contained in:
tushargite96 2021-02-16 19:48:52 +05:30
parent 45c7b02ba5
commit 390f04f433
2 changed files with 7 additions and 7 deletions

View File

@ -229,8 +229,8 @@ latex_elements = {
# [howto/manual]). # [howto/manual]).
latex_documents = [ latex_documents = [
('index', 'doc-cinderlib.tex', ('index', 'doc-cinderlib.tex',
u'Cinder Library Documentation', 'Cinder Library Documentation',
u'Cinder Contributors', 'manual'), 'Cinder Contributors', 'manual'),
] ]
# The name of an image file (relative to this directory) to place at # The name of an image file (relative to this directory) to place at
@ -265,8 +265,8 @@ latex_additional_files = ['cinderlib.sty']
# (source start file, name, description, authors, manual section). # (source start file, name, description, authors, manual section).
man_pages = [ man_pages = [
('index', 'cinderlib', ('index', 'cinderlib',
u'Cinder Library Documentation', 'Cinder Library Documentation',
[u'Cinder Contributors'], 1) ['Cinder Contributors'], 1)
] ]
# If true, show URL addresses after external links. # If true, show URL addresses after external links.
@ -280,8 +280,8 @@ man_pages = [
# dir menu entry, description, category) # dir menu entry, description, category)
texinfo_documents = [ texinfo_documents = [
('index', 'cinderlib', ('index', 'cinderlib',
u'Cinder Library Documentation', 'Cinder Library Documentation',
u'Cinder Contributors', 'Cinder Contributors',
'cinderlib', 'cinderlib',
'Direct usage of Cinder Block Storage drivers without the services.', 'Direct usage of Cinder Block Storage drivers without the services.',
'Miscellaneous'), 'Miscellaneous'),

View File

@ -34,7 +34,7 @@ source_suffix = '.rst'
master_doc = 'index' master_doc = 'index'
# General information about the project. # General information about the project.
copyright = u'2017, Cinder Developers' copyright = '2017, Cinder Developers'
# Release notes are unversioned, so we don't need to set version and release # Release notes are unversioned, so we don't need to set version and release
version = '' version = ''