simonh10 / python-edl

A python EDL parsing library
MIT License
90 stars 33 forks source link

python3 compatibility #9

Open russellaugust opened 1 year ago

russellaugust commented 1 year ago

From a short bit of experimenting, to get this running on python3, this line just needs updating:

https://github.com/simonh10/python-edl/blob/a7185fc6b3e9b554fb802cc63853981823125a72/edl/__init__.py#LL567C18-L567C18

 if isinstance(input_, collections.Iterable):

to

 if isinstance(input_, collections.abc.Iterable):
KrisKohlmeier commented 7 months ago

This should be pushed to the current version, fixed everything wrong with the library not working.