Re: [PATCH 2/5] python/utils: add VerboseProcessError

2022-03-03 Thread Eric Blake
On Thu, Mar 03, 2022 at 03:58:59PM -0500, John Snow wrote: > This adds an Exception that extends the Python stdlib > subprocess.CalledProcessError. > > The difference is that the str() method of this exception also adds the > stdout/stderr logs. In effect, if this exception goes unhandled, Python

[PATCH 2/5] python/utils: add VerboseProcessError

2022-03-03 Thread John Snow
This adds an Exception that extends the Python stdlib subprocess.CalledProcessError. The difference is that the str() method of this exception also adds the stdout/stderr logs. In effect, if this exception goes unhandled, Python will print the output in a visually distinct wrapper to the terminal