Merge pull request #66 from carnal0wnage/list_modules_change
Normalized module names when listing
This commit is contained in:
@@ -110,6 +110,7 @@ def make_tabulate_rows(hash, cloud_provider):
|
|||||||
for item in hash[key]:
|
for item in hash[key]:
|
||||||
for (k,v) in item.items():
|
for (k,v) in item.items():
|
||||||
normalized_comment = normalize_comments(v)
|
normalized_comment = normalize_comments(v)
|
||||||
|
k = re.sub("module_", "", k)
|
||||||
entire_contents.append([cloud_provider, key, k, normalized_comment])
|
entire_contents.append([cloud_provider, key, k, normalized_comment])
|
||||||
|
|
||||||
return entire_contents
|
return entire_contents
|
||||||
|
|||||||
Reference in New Issue
Block a user