diff options
| author | tushargite96 <tushargite96@gmail.com> | 2021-02-16 19:55:30 +0530 |
|---|---|---|
| committer | Brian Rosmaita <rosmaita.fossdev@gmail.com> | 2021-03-11 08:32:54 -0500 |
| commit | d9213138b1df8ead680823157848b8f5056b9c63 (patch) | |
| tree | 43dbc171bde2076e892b326131dad46418bd5061 /doc/source | |
| parent | 7e4219622b172b5ef42ef4e8214c6e8f8f59f2bf (diff) | |
| download | python-cinderclient-d9213138b1df8ead680823157848b8f5056b9c63.tar.gz | |
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: I9902966892a1dc4f85d449dfe580fb128647487b
Diffstat (limited to 'doc/source')
| -rw-r--r-- | doc/source/conf.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/doc/source/conf.py b/doc/source/conf.py index 2868e84..0c5ce55 100644 --- a/doc/source/conf.py +++ b/doc/source/conf.py @@ -81,8 +81,8 @@ html_theme = 'openstackdocs' # -- Options for manual page output ------------------------------------------ man_pages = [ - ('cli/details', 'cinder', u'Client for OpenStack Block Storage API', - [u'OpenStack Contributors'], 1), + ('cli/details', 'cinder', 'Client for OpenStack Block Storage API', + ['OpenStack Contributors'], 1), ] # -- Options for openstackdocstheme ------------------------------------------- @@ -104,8 +104,8 @@ openstackdocs_pdf_link = True # (source start file, target name, title, author, documentclass # [howto/manual]). latex_documents = [ - ('index', 'doc-python-cinderclient.tex', u'Cinder Client Documentation', - u'Cinder Contributors', 'manual'), + ('index', 'doc-python-cinderclient.tex', 'Cinder Client Documentation', + 'Cinder Contributors', 'manual'), ] # The name of an image file (relative to this directory) to place at the top of |
