summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorZuul <zuul@review.opendev.org>2022-04-22 17:21:06 +0000
committerGerrit Code Review <review@openstack.org>2022-04-22 17:21:06 +0000
commit238269c07ff2c3ada38c6da21f0a27ecc582e1a3 (patch)
tree6ed1a6736e9fe38e5ac823f015af4c61e198f955 /doc
parentea1308ad0e66f115eef4aa1cf2896256f69eab24 (diff)
parent07c7f946019edf25f1c32a1c6d4875e4fb3ec4e4 (diff)
downloadpython-keystoneclient-238269c07ff2c3ada38c6da21f0a27ecc582e1a3.tar.gz
Merge "remove unicode from code"
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 db0a8c0..9c98458 100644
--- a/doc/source/conf.py
+++ b/doc/source/conf.py
@@ -187,8 +187,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
==============