From a8d567a384f22f79d1225250d277598b57200b82 Mon Sep 17 00:00:00 2001 From: Emil Lerch Date: Tue, 5 Jan 2021 23:26:33 -0800 Subject: [PATCH] add changed data to output for command line processing --- etags.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/etags.py b/etags.py index 5f23cca..59a1b9f 100755 --- a/etags.py +++ b/etags.py @@ -138,7 +138,8 @@ def lambda_handler(event, context): return { 'statusCode': 200, - 'body': json.dumps(event) + 'body': json.dumps(event), + 'changed': changed, }