summaryrefslogtreecommitdiff
path: root/tests/make_playbooks.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/make_playbooks.py')
-rwxr-xr-xtests/make_playbooks.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/make_playbooks.py b/tests/make_playbooks.py
index 93c37bc81..cb7a98096 100755
--- a/tests/make_playbooks.py
+++ b/tests/make_playbooks.py
@@ -40,7 +40,8 @@ def handle_repo(path):
config_path = os.path.join(path, fn)
break
try:
- config = yaml.safe_load(open(config_path))
+ with open(config_path) as f:
+ config = yaml.safe_load(f)
except Exception:
print(" Has yaml errors")
return