From 3dc59f08015a7736d129502454a0adb4e2bfd220 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=A3o=20Coelho?= Date: Tue, 17 Jul 2018 15:20:06 +0100 Subject: [PATCH] Fixed spacing typo When running 'sam local start-lambda' it logged "templatethrough" rather than "template through" --- samcli/commands/local/lib/local_lambda_service.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/samcli/commands/local/lib/local_lambda_service.py b/samcli/commands/local/lib/local_lambda_service.py index 9e7f8a4f7f..c56de5dd4b 100644 --- a/samcli/commands/local/lib/local_lambda_service.py +++ b/samcli/commands/local/lib/local_lambda_service.py @@ -53,6 +53,6 @@ def start(self): service.create() LOG.info("Starting the Local Lambda Service. You can now invoke your Lambda Functions defined in your template" - "through the endpoint.") + " through the endpoint.") service.run()