From d351eba75863356182de148f9af93308da1ce33d Mon Sep 17 00:00:00 2001 From: Lipu Fei Date: Mon, 29 Jan 2018 14:55:56 +0100 Subject: [PATCH] Use \n instead of \r for message formatting CURA-4863 --- plugins/LegacyProfileReader/LegacyProfileReader.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/LegacyProfileReader/LegacyProfileReader.py b/plugins/LegacyProfileReader/LegacyProfileReader.py index 5634018196..35c77f840b 100644 --- a/plugins/LegacyProfileReader/LegacyProfileReader.py +++ b/plugins/LegacyProfileReader/LegacyProfileReader.py @@ -76,7 +76,7 @@ class LegacyProfileReader(ProfileReader): multi_extrusion = global_container_stack.getProperty("machine_extruder_count", "value") > 1 if multi_extrusion: Logger.log("e", "Unable to import legacy profile %s. Multi extrusion is not supported", file_name) - raise Exception("\r\rUnable to import legacy profile. Multi extrusion is not supported") + raise Exception("\nUnable to import legacy profile. Multi extrusion is not supported") Logger.log("i", "Importing legacy profile from file " + file_name + ".") container_registry = ContainerRegistry.getInstance()