From a4cb933de5ae8c0e68c8bfe56eed456b09cd428a Mon Sep 17 00:00:00 2001 From: Jean-Philippe ARGAUD Date: Wed, 7 Nov 2018 09:32:39 +0100 Subject: [PATCH] Minor correction to enforce string use --- src/daSalome/daGUI/daGuiImpl/adaoCase.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/daSalome/daGUI/daGuiImpl/adaoCase.py b/src/daSalome/daGUI/daGuiImpl/adaoCase.py index 7f65168..504fad2 100644 --- a/src/daSalome/daGUI/daGuiImpl/adaoCase.py +++ b/src/daSalome/daGUI/daGuiImpl/adaoCase.py @@ -119,7 +119,7 @@ class AdaoCase: rtn = "Validation report is empty." if self.eficas_editor.jdc: rtn = "Validation report for the selected ADAO case:\n\n" - rtn += self.eficas_editor.jdc.report() + rtn += str( self.eficas_editor.jdc.report() ) return rtn def showTreeAdaoCase(self): -- 2.39.2