summaryrefslogtreecommitdiff
path: root/doc/source
diff options
context:
space:
mode:
authorLiZekun <2954674728@qq.com>2022-06-02 14:12:28 +0800
committerLiZekun <2954674728@qq.com>2022-06-02 06:14:07 +0000
commit0406fa753136071019810cb7bc1c087853ec8327 (patch)
tree29f8f965c92ef11e5b91e2c119e4e39b3d0c9628 /doc/source
parent34afea3af93985c5615b0b3da8f6dd93468782bc (diff)
downloadironic-0406fa753136071019810cb7bc1c087853ec8327.tar.gz
Remove unicode literal from code
All strings are considered as unicode literal string from Python 3. This patch drops the explicit unicode literal (u'...') appearances from the unicode strings. Change-Id: I52ae9180344baf408e6e8a932e9d59dc45ece9de
Diffstat (limited to 'doc/source')
-rw-r--r--doc/source/conf.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/source/conf.py b/doc/source/conf.py
index 2746ac934..a5b2edcfa 100644
--- a/doc/source/conf.py
+++ b/doc/source/conf.py
@@ -105,7 +105,7 @@ source_suffix = '.rst'
master_doc = 'index'
# General information about the project.
-copyright = u'OpenStack Foundation'
+copyright = 'OpenStack Foundation'
config_generator_config_file = '../../tools/config/ironic-config-generator.conf'
sample_config_basename = '_static/ironic'
@@ -155,8 +155,8 @@ latex_documents = [
(
'index',
'doc-ironic.tex',
- u'Ironic Documentation',
- u'OpenStack Foundation',
+ 'Ironic Documentation',
+ 'OpenStack Foundation',
'manual'
),
]