antiboredom / vidpy

video editing and compositing with python and melt
https://antiboredom.github.io/vidpy
GNU General Public License v3.0
132 stars 19 forks source link

AttributeError: module 'os' has no attribute 'errno' #11

Open samanth-jain opened 1 year ago

samanth-jain commented 1 year ago

This error can be fixed by changing the code in vidpy/utils.py: except OSError as e: if e.errno == os.errno.ENOENT: to this: except OSError as e: if (e.errno): os.errno doesn't exist anymore in Python 3.7+