From 3c9a1ffa0e3a99138a215f99c40d60c544a07a85 Mon Sep 17 00:00:00 2001 From: Vanya Belyaev Date: Mon, 23 Dec 2024 16:06:41 +0100 Subject: [PATCH] fix - 1 ? --- ostap/core/core.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/ostap/core/core.py b/ostap/core/core.py index 6edee512..73040277 100644 --- a/ostap/core/core.py +++ b/ostap/core/core.py @@ -624,7 +624,10 @@ def _TO_draw_ ( obj , option = '', *args , **kwargs ) : # ==================== ============================================= ## update the pad/canvas - Ostap.Utils.pad_update ( pad ) + try : + Ostap.Utils.pad_update ( pad ) + except: + logger.error ( 'Exception here!!' , exc_info = True ) return result