diff options
author | Jenkins <jenkins@review.openstack.org> | 2016-05-11 06:52:25 +0000 |
---|---|---|
committer | Gerrit Code Review <review@openstack.org> | 2016-05-11 06:52:26 +0000 |
commit | 51a24f1537f84988af08d6a4c9cd4def6e3f5804 (patch) | |
tree | bb4a8a58a1cd146f4b9d07ef3dfcfe91b5601277 /heatclient/common | |
parent | b9c04918e18df46fc72dbf0c20615700e3b78a23 (diff) | |
parent | 38c0684a6be97fd1cb74e7bb1e426e1d6a525d65 (diff) | |
download | python-heatclient-51a24f1537f84988af08d6a4c9cd4def6e3f5804.tar.gz |
Merge "use thread safe fnmatch"
Diffstat (limited to 'heatclient/common')
-rw-r--r-- | heatclient/common/hook_utils.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/heatclient/common/hook_utils.py b/heatclient/common/hook_utils.py index c877f23..0dfe63e 100644 --- a/heatclient/common/hook_utils.py +++ b/heatclient/common/hook_utils.py @@ -10,9 +10,10 @@ # License for the specific language governing permissions and limitations # under the License. -import fnmatch import logging +from oslo_utils import fnmatch + import heatclient.exc as exc from heatclient.openstack.common._i18n import _ |