diff options
| author | Steve Martinelli <stevemar@ca.ibm.com> | 2014-10-14 17:49:17 -0400 |
|---|---|---|
| committer | Steve Martinelli <stevemar@ca.ibm.com> | 2014-10-15 04:25:50 +0000 |
| commit | 802301ca1763043bf699a52043504ab71a4dbb3b (patch) | |
| tree | ca19bdc3eec296eda4721f92946525edc71856fb /keystoneclient/fixture | |
| parent | 89dc951f7d5a603f0c34b7c2cb9f7d26d73d9916 (diff) | |
| download | python-keystoneclient-802301ca1763043bf699a52043504ab71a4dbb3b.tar.gz | |
Use oslo.utils and oslo.serialization
Left timeutils and strutils in openstack/common since they are used in
openstack/common/apiclient and memorycache.
Change-Id: Idb5f09c159d907dfba84cd1f7501f650318af7d9
Diffstat (limited to 'keystoneclient/fixture')
| -rw-r--r-- | keystoneclient/fixture/discovery.py | 3 | ||||
| -rw-r--r-- | keystoneclient/fixture/v2.py | 3 | ||||
| -rw-r--r-- | keystoneclient/fixture/v3.py | 3 |
3 files changed, 6 insertions, 3 deletions
diff --git a/keystoneclient/fixture/discovery.py b/keystoneclient/fixture/discovery.py index 94cfe11..c7edf15 100644 --- a/keystoneclient/fixture/discovery.py +++ b/keystoneclient/fixture/discovery.py @@ -12,7 +12,8 @@ import datetime -from keystoneclient.openstack.common import timeutils +from oslo.utils import timeutils + from keystoneclient import utils __all__ = ['DiscoveryList', diff --git a/keystoneclient/fixture/v2.py b/keystoneclient/fixture/v2.py index 467ad4c..3a107f4 100644 --- a/keystoneclient/fixture/v2.py +++ b/keystoneclient/fixture/v2.py @@ -13,8 +13,9 @@ import datetime import uuid +from oslo.utils import timeutils + from keystoneclient.fixture import exception -from keystoneclient.openstack.common import timeutils class _Service(dict): diff --git a/keystoneclient/fixture/v3.py b/keystoneclient/fixture/v3.py index e40b314..4f0d581 100644 --- a/keystoneclient/fixture/v3.py +++ b/keystoneclient/fixture/v3.py @@ -13,8 +13,9 @@ import datetime import uuid +from oslo.utils import timeutils + from keystoneclient.fixture import exception -from keystoneclient.openstack.common import timeutils class _Service(dict): |
