Remove unused variable

This commit is contained in:
Jake McDermott 2019-10-16 09:30:43 -04:00
parent 90c5efa336
commit cd18ec408c
No known key found for this signature in database
GPG Key ID: 0E56ED990CDFCB4F

View File

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