From 773a49c40d02535e73dbc50081920a42d87d3219 Mon Sep 17 00:00:00 2001 From: Declan Shanaghy Date: Fri, 3 Jun 2016 16:30:34 -0700 Subject: [PATCH] Fix typo in message variable --- moto/cloudformation/exceptions.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/moto/cloudformation/exceptions.py b/moto/cloudformation/exceptions.py index de672d8b8..4bbbbbcff 100644 --- a/moto/cloudformation/exceptions.py +++ b/moto/cloudformation/exceptions.py @@ -11,7 +11,7 @@ class UnformattedGetAttTemplateException(Exception): class ValidationError(BadRequest): def __init__(self, name_or_id, message=None): if message is None: - messgae="Stack:{0} does not exist".format(name_or_id), + message="Stack:{0} does not exist".format(name_or_id), template = Template(ERROR_RESPONSE) super(ValidationError, self).__init__()