We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The subprocess.check_output() call will fail but not with a CalledProcessError. It fails with a FileNotFoundError, so catch this too.
subprocess.check_output()
CalledProcessError
FileNotFoundError
Since this won't likely happen in practice (e.g. I found it while writing a DEP-8 test), this isn't an urgent bug.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The
subprocess.check_output()
call will fail but not with aCalledProcessError
. It fails with aFileNotFoundError
, so catch this too.Since this won't likely happen in practice (e.g. I found it while writing a DEP-8 test), this isn't an urgent bug.
The text was updated successfully, but these errors were encountered: