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
For instance, apbs_surface with quiet = True does not silence the executable run with subprocess.call. This can be fixed by using:
apbs_surface
quiet = True
import os import subprocess retcode = subprocess.call(['echo', 'foo'], stdout=subprocess.DEVNULL, stderr=subprocess.STDOUT)
ideally the output from the executable should be printed on the current process' stdout so that users can redirect it using redirect_stdout
The text was updated successfully, but these errors were encountered:
No branches or pull requests
For instance,
apbs_surface
withquiet = True
does not silence the executable run with subprocess.call.This can be fixed by using:
ideally the output from the executable should be printed on the current process' stdout so that users can redirect it using redirect_stdout
The text was updated successfully, but these errors were encountered: