Re: [PATCH] selftests/tpm2: Change exception handling to be Python 3 compatible

From: Ezra Buehler
Date: Sun Apr 12 2020 - 11:02:38 EST


Hi Jarkkon,

> On 12 Apr 2020, at 16:36, Jarkko Sakkinen <jarkko.sakkinen@xxxxxxxxxxxxxxx> wrote:
> + except ProtocolError(e):

Should this not be

except ProtocolError as e:

?

Cheers,
Ezra.