summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorzhangtongjian <125163227@qq.com>2021-01-04 17:16:58 +0800
committersongwenping <songwenping@inspur.com>2022-04-19 15:57:10 +0800
commit07c7f946019edf25f1c32a1c6d4875e4fb3ec4e4 (patch)
treea04607414cb2c100e9daedc8e1fde3c5b26f8040 /doc
parentd5cb761763988217cdd00a7981a62e2083fd381f (diff)
downloadpython-keystoneclient-07c7f946019edf25f1c32a1c6d4875e4fb3ec4e4.tar.gz
remove unicode from code
Change-Id: I2d2d025b0d8bda2ffc7be4d30489728c05f53c8e
Diffstat (limited to 'doc')
-rw-r--r--doc/source/conf.py4
-rw-r--r--doc/source/using-api-v2.rst2
2 files changed, 3 insertions, 3 deletions
diff --git a/doc/source/conf.py b/doc/source/conf.py
index e74410d..f31dc2c 100644
--- a/doc/source/conf.py
+++ b/doc/source/conf.py
@@ -186,8 +186,8 @@ apidoc_excluded_paths = [
# .
latex_documents = [
('index', 'doc-python-keystoneclient.tex',
- u'python-keystoneclient Documentation',
- u'OpenStack', 'manual'),
+ 'python-keystoneclient Documentation',
+ 'OpenStack', 'manual'),
]
# The name of an image file (relative to this directory) to place at the top of
diff --git a/doc/source/using-api-v2.rst b/doc/source/using-api-v2.rst
index 1b7c5de..7b0815f 100644
--- a/doc/source/using-api-v2.rst
+++ b/doc/source/using-api-v2.rst
@@ -79,7 +79,7 @@ This example will create a tenant named *openstackDemo*::
>>> keystone = client.Client(...)
>>> keystone.tenants.create(tenant_name="openstackDemo",
... description="Default Tenant", enabled=True)
- <Tenant {u'id': u'9b7962da6eb04745b477ae920ad55939', u'enabled': True, u'description': u'Default Tenant', u'name': u'openstackDemo'}>
+ <Tenant {'id': '9b7962da6eb04745b477ae920ad55939', 'enabled': True, 'description': 'Default Tenant', 'name': 'openstackDemo'}>
Creating users
==============