python-edl
python-edl copied to clipboard
python3 compatibility
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.