aboutsummaryrefslogtreecommitdiffstats
path: root/ice_validator/tests/utils/volumes.py
diff options
context:
space:
mode:
Diffstat (limited to 'ice_validator/tests/utils/volumes.py')
-rwxr-xr-x[-rw-r--r--]ice_validator/tests/utils/volumes.py8
1 files changed, 5 insertions, 3 deletions
diff --git a/ice_validator/tests/utils/volumes.py b/ice_validator/tests/utils/volumes.py
index 03ac611..7cdd147 100644..100755
--- a/ice_validator/tests/utils/volumes.py
+++ b/ice_validator/tests/utils/volumes.py
@@ -38,8 +38,10 @@
# ECOMP is a trademark and service mark of AT&T Intellectual Property.
#
-import yaml
from os import path
+import yaml
+
+VERSION = '1.0.0'
def get_volume_resources(heat_template):
@@ -60,8 +62,8 @@ def get_volume_resources(heat_template):
try:
with open(volume_template) as fh:
yml = yaml.load(fh)
- except Exception as e:
- print(e)
+ except yaml.YAMLError as e:
+ print(e) # pylint: disable=superfluous-parens
return {}
if 'outputs' not in yml: