diff options
author | Jenkins <jenkins@review.openstack.org> | 2015-09-03 01:18:10 +0000 |
---|---|---|
committer | Gerrit Code Review <review@openstack.org> | 2015-09-03 01:18:10 +0000 |
commit | e0ce24dd43838eef306bd1a0114305cd5ae39cf7 (patch) | |
tree | 5151a19e966bd4b51a121e1ae1adbe9a910ded20 /swiftclient/client.py | |
parent | e52df5d8a59708130054ef83068e4d516b2b6d01 (diff) | |
parent | 4b310083dfebe8c54e599fe319f801cca87f8dd6 (diff) | |
download | python-swiftclient-e0ce24dd43838eef306bd1a0114305cd5ae39cf7.tar.gz |
Merge "Stop Connection class modifying os_options parameter"
Diffstat (limited to 'swiftclient/client.py')
-rw-r--r-- | swiftclient/client.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/swiftclient/client.py b/swiftclient/client.py index 4819c12..a2d7ada 100644 --- a/swiftclient/client.py +++ b/swiftclient/client.py @@ -1290,7 +1290,7 @@ class Connection(object): self.starting_backoff = starting_backoff self.max_backoff = max_backoff self.auth_version = auth_version - self.os_options = os_options or {} + self.os_options = dict(os_options or {}) if tenant_name: self.os_options['tenant_name'] = tenant_name if preauthurl: |