Skip to content

Commit

Permalink
missing comma
Browse files Browse the repository at this point in the history
  • Loading branch information
ryanjpayne committed Sep 15, 2024
1 parent e9816e2 commit 3b25eab
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lambda_functions/source/cw-helper/organizations.py
Original file line number Diff line number Diff line change
Expand Up @@ -63,4 +63,4 @@ def lambda_handler(event, context):
except Exception:
LOGGER.exception("Unexpected!")
reason = f"See the details in CloudWatch Log Stream: '{context.log_group_name}'"
cfnresponse.send(event, context, cfnresponse.FAILED, {}, data_dict reason=reason)
cfnresponse.send(event, context, cfnresponse.FAILED, {}, data_dict, reason=reason)

0 comments on commit 3b25eab

Please sign in to comment.