summaryrefslogtreecommitdiff
path: root/zuul/ansible/logconfig.py
diff options
context:
space:
mode:
Diffstat (limited to 'zuul/ansible/logconfig.py')
-rw-r--r--zuul/ansible/logconfig.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/zuul/ansible/logconfig.py b/zuul/ansible/logconfig.py
index 66881336a..2d7c37463 100644
--- a/zuul/ansible/logconfig.py
+++ b/zuul/ansible/logconfig.py
@@ -140,7 +140,8 @@ def _read_config_file(filename: str):
raise ValueError("Unable to read logging config file at %s" % filename)
if os.path.splitext(filename)[1] in ('.yml', '.yaml', '.json'):
- return yaml.safe_load(open(filename, 'r'))
+ with open(filename, 'r') as f:
+ return yaml.safe_load(f)
return filename