summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorZuul <zuul@review.opendev.org>2021-06-26 03:44:48 +0000
committerGerrit Code Review <review@openstack.org>2021-06-26 03:44:48 +0000
commit7d05509cdb0cd790438049ac4dade2afc8fdd1bd (patch)
tree31379b9acfbe449f074c0b84cc5f3716b53781b6
parentd54d7c7a299bcd16f034b62629732722ce2a25f1 (diff)
parent4fe338cafbe581c6963e751694d36f65455ac3a3 (diff)
downloadheat-7d05509cdb0cd790438049ac4dade2afc8fdd1bd.tar.gz
Merge "Use stdlib fnmatch module"
-rw-r--r--heat/engine/environment.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/heat/engine/environment.py b/heat/engine/environment.py
index 7ff4fcca9..f01b836ba 100644
--- a/heat/engine/environment.py
+++ b/heat/engine/environment.py
@@ -12,6 +12,7 @@
# under the License.
import collections
+import fnmatch
import glob
import itertools
import os.path
@@ -20,7 +21,6 @@ import weakref
from oslo_config import cfg
from oslo_log import log
-from oslo_utils import fnmatch
from heat.common import environment_format as env_fmt
from heat.common import exception