Skip to content

Commit

Permalink
Syntax hotfix in event_manager logging
Browse files Browse the repository at this point in the history
  • Loading branch information
wrideout committed Jan 31, 2021
1 parent c5de04b commit 27100a8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion event_manager.py
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ def listen():
"""
event = json.loads(request.data)

logger.debug("Handling event %s, %s", event{"type"}, event{"event"}.get("subtype"))
logger.debug("Handling event %s, %s", event["type"], event["event"].get("subtype"))
if "challenge" in event:
return _create_challenge_response(event["challenge"])

Expand Down

0 comments on commit 27100a8

Please sign in to comment.