requested changes from review

This commit is contained in:
Brandon Bradley 2020-02-01 14:52:48 -06:00
commit 800e5ab7d2
2 changed files with 2 additions and 2 deletions

View file

@ -229,7 +229,7 @@ class CloudFormationResponse(BaseResponse):
stack_name_or_id = self._get_param("StackName")
resources = self.cloudformation_backend.list_stack_resources(stack_name_or_id)
if not resources:
if resources is None:
raise ValidationError(stack_name_or_id)
template = self.response_template(LIST_STACKS_RESOURCES_RESPONSE)