simonh10 / python-edl

A python EDL parsing library

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

python3 compatibility

russellaugust opened this issue · 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):

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