Skip to content

Commit

Permalink
fix: adding missing append
Browse files Browse the repository at this point in the history
  • Loading branch information
eamonnfaherty committed May 4, 2022
1 parent a05ee2e commit 23d4387
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion servicecatalog_puppet/manifest_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,10 @@ def expand_manifest(manifest, client):
logger.info("Found an account: {}".format(account_id))
expanded_account = expand_account(account, client, account_id, manifest)
if expanded_account is None:
raise Exception(f"You have listed account: {account_id} which is not ACTIVE")
raise Exception(
f"You have listed account: {account_id} which is not ACTIVE"
)
temp_accounts.append(expanded_account)
elif account.get("ou"):
ou = account.get("ou")
logger.info("Found an ou: {}".format(ou))
Expand Down

0 comments on commit 23d4387

Please sign in to comment.