Lluís Vilanova <vilan...@ac.upc.edu> writes: > Signed-off-by: Lluís Vilanova <vilan...@ac.upc.edu> > --- > tests/qapi-schema/test-qapi.py | 4 ++-- > 1 file changed, 2 insertions(+), 2 deletions(-) > > diff --git a/tests/qapi-schema/test-qapi.py b/tests/qapi-schema/test-qapi.py > index b3d1e1d..ac6da13 100644 > --- a/tests/qapi-schema/test-qapi.py > +++ b/tests/qapi-schema/test-qapi.py > @@ -18,8 +18,8 @@ try: > exprs = parse_schema(sys.stdin) > except SystemExit: > raise > -except: > - print >>sys.stderr, "Crashed:", sys.exc_info()[0] > +except Exception, e: > + print >>sys.stderr, "Crashed:", str(e) > exit(1) > > pprint(exprs)
This still hides information necessary to debug the crash. Let's just not catch these exceptions.