Re: [PATCH] image-fuzzer: Use OSerror.strerror instead of tuple subscript

2019-11-05 Thread Stefan Hajnoczi
On Mon, Oct 21, 2019 at 06:41:17PM -0300, Eduardo Habkost wrote: > OSError can't be used like a tuple on Python 3, so change the > code to use `e.sterror` instead of `e[1]`. > > Reported-by: John Snow > Signed-off-by: Eduardo Habkost > --- > tests/image-fuzzer/runner.py | 4 ++-- > 1 file

Re: [PATCH] image-fuzzer: Use OSerror.strerror instead of tuple subscript

2019-10-23 Thread John Snow
On 10/21/19 5:41 PM, Eduardo Habkost wrote: > OSError can't be used like a tuple on Python 3, so change the > code to use `e.sterror` instead of `e[1]`. > > Reported-by: John Snow > Signed-off-by: Eduardo Habkost Reviewed-by: John Snow > --- > tests/image-fuzzer/runner.py | 4 ++-- > 1

[PATCH] image-fuzzer: Use OSerror.strerror instead of tuple subscript

2019-10-21 Thread Eduardo Habkost
OSError can't be used like a tuple on Python 3, so change the code to use `e.sterror` instead of `e[1]`. Reported-by: John Snow Signed-off-by: Eduardo Habkost --- tests/image-fuzzer/runner.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/image-fuzzer/runner.py