include awxkit CI in zuul runs

additionally, fix up some flake8 failures
This commit is contained in:
Ryan Petrello
2019-08-08 22:26:39 -04:00
parent 9616cc6f78
commit adaa4148c6
8 changed files with 38 additions and 31 deletions

View File

@@ -148,13 +148,16 @@ def format_human(output, fmt):
else:
output = [output]
return tabulate([
return tabulate(
[
dict(
(col, record.get(col, ''))
for col in column_names
)
for record in output
], headers='keys', tablefmt='rst'
],
headers='keys',
tablefmt='rst'
)