Remove unicode from code

All strings are considered as unicode string from Python 3.

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

Change-Id: I40185b08a9e415f416c45608cf90c8f515755222
This commit is contained in:
LiZekun 2022-01-27 10:51:36 +08:00
parent 6ff7514098
commit f884ef2314

View File

@ -40,8 +40,8 @@ source_suffix = '.rst'
master_doc = 'index'
# General information about the project.
project = u'releases'
copyright = u'2015, OpenStack Foundation'
project = 'releases'
copyright = '2015, OpenStack Foundation'
# If true, '()' will be appended to :func: etc. cross-reference text.
add_function_parentheses = True