python-edl icon indicating copy to clipboard operation
python-edl copied to clipboard

python3 compatibility

Open russellaugust opened this issue 2 years ago • 1 comments

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):

russellaugust avatar Mar 01 '23 17:03 russellaugust

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

KrisKohlmeier avatar Apr 27 '24 06:04 KrisKohlmeier