Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ __pycache__/
# Distribution / packaging
.Python
env/
venv/
build/
develop-eggs/
dist/
Expand Down
2 changes: 1 addition & 1 deletion zappa/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -2461,7 +2461,7 @@ def unschedule_events(self, events, lambda_arn=None, lambda_name=None, excluded_
function,
self.boto_session
)
print("Removed event " + name + " (" + str(event_source['events']) + ").")
print("Removed event " + name + " (" + str(event_source.get('events', [])) + ").")

###
# Async / SNS
Expand Down