aws_role_credentials icon indicating copy to clipboard operation
aws_role_credentials copied to clipboard

Fix to support python 3.9: getiterator() -> iter()

Open ibotdotout opened this issue 3 years ago • 0 comments

xml.etree.ElementTree.Element.getiterator() has been deprecated since Python 2.7, and has been removed in Python 3.9. Replace all instances of Element.getiterator(tag) with Element.iter(tag)

ibotdotout avatar Mar 15 '21 04:03 ibotdotout