From 148ed5fa3a07d2c9fc76ea93cb49416eeb20419b Mon Sep 17 00:00:00 2001 From: guibog Date: Thu, 29 Feb 2024 15:17:18 +0800 Subject: [PATCH] Hide flake --- _test/lib/test_appliance.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_test/lib/test_appliance.py b/_test/lib/test_appliance.py index bdcafc7..bb291ef 100644 --- a/_test/lib/test_appliance.py +++ b/_test/lib/test_appliance.py @@ -141,7 +141,7 @@ def display(results, verbose): sys.stdout.write('=' * 75 + '\n') sys.stdout.write('%s(%s): %s\n' % (name, ', '.join(filenames), kind)) if kind == 'ERROR': - traceback.print_exception(file=sys.stdout, *info) + traceback.print_exception(file=sys.stdout, *info) # NOQA else: sys.stdout.write('Traceback (most recent call last):\n') traceback.print_tb(info[2], file=sys.stdout)