Remove unused variable

This commit is contained in:
Jake McDermott
2019-10-16 09:30:43 -04:00
parent 90c5efa336
commit cd18ec408c

View File

@@ -115,6 +115,6 @@ def read_ansible_config(project_path, variables_of_interest):
for var in variables_of_interest: for var in variables_of_interest:
if var in parser['defaults']: if var in parser['defaults']:
values[var] = parser['defaults'][var] values[var] = parser['defaults'][var]
except Exception as e: except Exception:
logger.exception('Failed to read ansible configuration(s) {}'.format(fnames)) logger.exception('Failed to read ansible configuration(s) {}'.format(fnames))
return values return values