Skip to content

Commit

Permalink
Do not require a "Name" to be specified (#165)
Browse files Browse the repository at this point in the history
  • Loading branch information
besbes committed Sep 8, 2020
1 parent 38b4ce6 commit 111d1c0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion formica/change_set.py
Expand Up @@ -121,7 +121,7 @@ def __change_detail(change):
target_ = change["Target"]
attribute = target_["Attribute"]
if attribute == "Properties":
return target_["Name"]
return target_.get("Name", "")
else:
return attribute

Expand Down

0 comments on commit 111d1c0

Please sign in to comment.