From 568510ecd7f27e312b0171cb588b50ecf947b700 Mon Sep 17 00:00:00 2001 From: "Salvador E. Tropea" Date: Fri, 5 Jan 2024 08:17:04 -0300 Subject: [PATCH] [Fixed] Support list of errors (not just tuple) --- kibot/gs.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kibot/gs.py b/kibot/gs.py index 20a672ad..a161add5 100644 --- a/kibot/gs.py +++ b/kibot/gs.py @@ -781,7 +781,7 @@ class GS(object): @staticmethod def exit_with_error(msg, level): GS.trace_dump() - if isinstance(msg, tuple): + if isinstance(msg, (tuple, list)): for m in msg: logger.error(m) else: