sphinx-contrib / plantuml

BSD 2-Clause "Simplified" License
113 stars 40 forks source link

Removes check on deprecated ENOENT #57

Closed danwos closed 3 years ago

danwos commented 3 years ago

ENOENT is not supported anymore by Sphinx >= 4.0. Instead the Python internal FileNotFoundError shall be used.

See https://github.com/sphinx-doc/sphinx/pull/5797

Fixes #56

yuja commented 3 years ago

Fixed by c5e56fb.

FileNotFoundError is an exception type, not an errno integer.