diff options
author | Kota Tsuyuzaki <tsuyuzaki.kota@lab.ntt.co.jp> | 2017-03-16 22:26:29 -0700 |
---|---|---|
committer | Kota Tsuyuzaki <tsuyuzaki.kota@lab.ntt.co.jp> | 2017-03-16 22:26:29 -0700 |
commit | e684913489e84a1e70a9ffa4149dd6e94da71db9 (patch) | |
tree | 527c65eb7ed7d24e3e5f6efdaf50c74b8622afab /doc/source | |
parent | 70c90b2243c2df9857a188cbd61d340b7e191d0d (diff) | |
download | python-swiftclient-e684913489e84a1e70a9ffa4149dd6e94da71db9.tar.gz |
Don't recommend to overwrite imported `session` variable
Change-Id: I34e25e674aac3a85a4702779053d95962b292281
Diffstat (limited to 'doc/source')
-rw-r--r-- | doc/source/client-api.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/source/client-api.rst b/doc/source/client-api.rst index 57f49cb..db93b59 100644 --- a/doc/source/client-api.rst +++ b/doc/source/client-api.rst @@ -35,10 +35,10 @@ Keystone Session project_domain_name='Default') # Create session - session = session.Session(auth=auth) + keystone_session = session.Session(auth=auth) # Create swiftclient Connection - swift_conn = Connection(session=session) + swift_conn = Connection(session=keystone_session) Keystone v3 ~~~~~~~~~~~ |