Commit fcc07d6a by MichaelRoytman Committed by GitHub

Merge pull request #3230 from edx/michael/dependencies

Change logger warning to error when error parsing configuration file …
parents cccc7d58 4f883ca3
......@@ -146,7 +146,7 @@ def _open_yaml_file(file_str):
yaml_file = yaml.load(file)
return yaml_file
except yaml.YAMLError, exc:
LOGGER.warning("error in configuration file: %s" % str(exc))
LOGGER.error("error in configuration file: %s" % str(exc))
sys.exit(1)
def change_set_to_roles(files, git_dir, roles_dirs, playbooks_dirs, graph):
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment