Fix typo in message variable

This commit is contained in:
Declan Shanaghy 2016-06-03 16:30:34 -07:00
parent 4372c346d9
commit 773a49c40d

View File

@ -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__()