diff options
author | Brant Knudson <bknudson@us.ibm.com> | 2015-01-20 10:47:44 -0600 |
---|---|---|
committer | Brant Knudson <bknudson@us.ibm.com> | 2015-01-31 08:03:37 -0600 |
commit | 86ac254feebd4a000d8c922a527e83b0f3ca4c98 (patch) | |
tree | 98ba90f03e1e0ac6ae085eb43048b3b1e3512435 /keystoneclient/httpclient.py | |
parent | ab09d3eb5f57d7c56fd4fcd6f1a3256c3bae1575 (diff) | |
download | python-keystoneclient-86ac254feebd4a000d8c922a527e83b0f3ca4c98.tar.gz |
Change oslo.serialization to oslo_serialization
The oslo libraries are moving away from namespace packages.
bp drop-namespace-packages
Change-Id: I76dc9f733b222144f0274f8854877587c3501d1e
Diffstat (limited to 'keystoneclient/httpclient.py')
-rw-r--r-- | keystoneclient/httpclient.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/keystoneclient/httpclient.py b/keystoneclient/httpclient.py index 84b314e..3270295 100644 --- a/keystoneclient/httpclient.py +++ b/keystoneclient/httpclient.py @@ -21,7 +21,7 @@ OpenStack Client interface. Handles the REST calls and responses. import logging -from oslo.serialization import jsonutils +from oslo_serialization import jsonutils import pkg_resources import requests from six.moves.urllib import parse as urlparse |