Skip to content
This repository was archived by the owner on Mar 15, 2026. It is now read-only.
Merged
Changes from 1 commit
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
Prev Previous commit
Next Next commit
For python3, force tags to be a list (instead of the default dict_keys).
  • Loading branch information
Scot Kronenfeld committed Feb 23, 2018
commit b866652ff9aec00e05b352649d0c9210f9dd89c1
2 changes: 1 addition & 1 deletion aws_lambda/aws_lambda.py
Original file line number Diff line number Diff line change
Expand Up @@ -642,7 +642,7 @@ def update_function(
}
if tags != existing_cfg['Tags']:
client.untag_resource(Resource=ret['FunctionArn'],
TagKeys=existing_cfg['Tags'].keys())
TagKeys=list(existing_cfg['Tags'].keys()))
client.tag_resource(Resource=ret['FunctionArn'], Tags=tags)


Expand Down