martinblech / xmltodict

Python module that makes working with XML feel like you are working with JSON
MIT License
5.46k stars 465 forks source link

Replace deprecated BadZipfile with BadZipFile #323

Closed hugovk closed 1 year ago

hugovk commented 1 year ago

BadZipfile (with a small f) has been deprecated since Python 3.2, use BadZipFile (big F) instead, added in 3.2.

martinblech commented 1 year ago

Thank you!