Skip to content

Commit 2c293a5

Browse files
committed
Fix message formatting for HelloWorldCounter example.
1 parent ee6a9d9 commit 2c293a5

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

examples/HelloWorldCounter/greengrassHelloWorldCounter.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,8 +50,8 @@ def function_handler(event, context):
5050
queueFullPolicy="AllOrException",
5151
payload=json.dumps(
5252
{
53-
"message": "Hello world! Sent from Greengrass Core running on platform: {}."
54-
+ " Invocation Count: {}".format(my_platform, my_counter)
53+
"message": "Hello world! Sent from Greengrass Core running on platform: {}.".format(my_platform)
54+
+ " Invocation Count: {}".format(my_counter)
5555
}
5656
),
5757
)

0 commit comments

Comments
 (0)