just changed the printout so that it looks like how you would call it from the command line

This commit is contained in:
cktricky
2018-09-28 09:38:30 -07:00
parent 83d8d45f95
commit 104118b280

View File

@@ -110,6 +110,7 @@ def make_tabulate_rows(hash, cloud_provider):
for item in hash[key]:
for (k,v) in item.items():
normalized_comment = normalize_comments(v)
k = re.sub("module_", "", k)
entire_contents.append([cloud_provider, key, k, normalized_comment])
return entire_contents