Open samanth-jain opened 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+
except OSError as e: if e.errno == os.errno.ENOENT:
except OSError as e: if (e.errno):
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+