From ca3babc60678419daaef6d49ff39b59f4e321e77 Mon Sep 17 00:00:00 2001 From: Hugo Lopes Tavares Date: Fri, 12 Feb 2016 15:43:48 -0500 Subject: [PATCH] [lambda] Add comment about Publish parameter --- moto/awslambda/models.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/moto/awslambda/models.py b/moto/awslambda/models.py index fd2ce11c1..65ead3e6b 100644 --- a/moto/awslambda/models.py +++ b/moto/awslambda/models.py @@ -18,7 +18,7 @@ class LambdaFunction(object): # optional self.description = spec.get('Description', '') self.memory_size = spec.get('MemorySize', 128) - self.publish = spec.get('Publish', False) + self.publish = spec.get('Publish', False) # this is ignored currently self.timeout = spec.get('Timeout', 3) self.vpc_config = spec.get('VpcConfig', {})