We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8227647 commit a420f8cCopy full SHA for a420f8c
buildstack.py
@@ -69,7 +69,7 @@ def checkstackname(region):
69
try:
70
71
client = boto3.client('cloudformation',region_name = region)
72
- client.list_stacks(StackStatusFilter=['CREATE_COMPLETE'])
+ response = client.list_stacks(StackStatusFilter=['CREATE_COMPLETE'])
73
for stacks in response['StackSummaries']:
74
if (stacks['StackName'] == stackname):
75
return True
0 commit comments