diff options
author | Julien Danjou <julien@danjou.info> | 2014-09-30 11:46:52 +0200 |
---|---|---|
committer | Julien Danjou <julien@danjou.info> | 2014-09-30 14:27:59 +0200 |
commit | 6519cf36fd5ffd88a45e53ca69080c4b421915d6 (patch) | |
tree | 875a7fc640f333a134e5165d197f1d095474a015 /heat/engine/constraints.py | |
parent | a11480323307c6315c89ea8ab3cb6e4939550672 (diff) | |
download | heat-6519cf36fd5ffd88a45e53ca69080c4b421915d6.tar.gz |
Switch to oslo.utils
Change-Id: I74979d8f75b099858314a30c98bb252c379e0304
Diffstat (limited to 'heat/engine/constraints.py')
-rw-r--r-- | heat/engine/constraints.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/heat/engine/constraints.py b/heat/engine/constraints.py index 2da0b39e3..bf9c2e107 100644 --- a/heat/engine/constraints.py +++ b/heat/engine/constraints.py @@ -15,11 +15,11 @@ import collections import numbers import re +from oslo.utils import strutils import six from heat.common import exception from heat.engine import resources -from heat.openstack.common import strutils class Schema(collections.Mapping): |