You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Aug 4, 2020. It is now read-only.
In a few places, mbox calls out to the subprocess module and passes the 'capture_output' kwarg. This option wasn't introduced until python 3.7, but the latest we can possibly get on EL7 is python 3.6
We can work around by setting stdout and stderr to subprocess.PIPE
I can do up a patch for this, but I wanted to open an issue for tracking.
The text was updated successfully, but these errors were encountered:
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
In a few places, mbox calls out to the subprocess module and passes the 'capture_output' kwarg. This option wasn't introduced until python 3.7, but the latest we can possibly get on EL7 is python 3.6
We can work around by setting
stdout
andstderr
tosubprocess.PIPE
I can do up a patch for this, but I wanted to open an issue for tracking.
The text was updated successfully, but these errors were encountered: