andreikop / qutepart

Code editor component for PyQt5
http://enki-editor.org
GNU Lesser General Public License v2.1
113 stars 29 forks source link

fix Python 3.9 incompatibility #89

Closed richboss closed 3 years ago

richboss commented 3 years ago

Remove call to Element.getchildren which was removed in Python 3.9. This method was deprecated since 3.2, though only warned in 3.8: https://docs.python.org/3.8/library/xml.etree.elementtree.html#xml.etree.ElementTree.Element.getchildren

andreikop commented 3 years ago

Thank you, @richboss !