From eca0e54bf3a2247cc77c3e931a85913a5a198d1a Mon Sep 17 00:00:00 2001 From: Yorik van Havre Date: Mon, 21 Dec 2015 12:37:57 -0200 Subject: [PATCH] Arch: small encoding bugfix --- src/Mod/Arch/ArchCommands.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Mod/Arch/ArchCommands.py b/src/Mod/Arch/ArchCommands.py index a9baa4596f..975501effa 100644 --- a/src/Mod/Arch/ArchCommands.py +++ b/src/Mod/Arch/ArchCommands.py @@ -1136,7 +1136,7 @@ class _CommandCheck: else: FreeCADGui.Selection.clearSelection() for i in result: - FreeCAD.Console.PrintWarning("Object "+i[0].Name+" ("+i[0].Label+") "+i[1]) + FreeCAD.Console.PrintWarning("Object "+i[0].Name+" ("+i[0].Label+") "+i[1].decode("utf8")) FreeCADGui.Selection.addSelection(i[0])