From 750a86d2fd0d2540c7c8eddcfa1d826977c718a5 Mon Sep 17 00:00:00 2001 From: Aleksei S Date: Mon, 29 Jan 2018 13:47:24 +0100 Subject: [PATCH] Added new lines to distinguis error message CURA-4876 --- 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 73a305a0f5..5634018196 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("Unable to import legacy profile. Multi extrusion is not supported") + raise Exception("\r\rUnable to import legacy profile. Multi extrusion is not supported") Logger.log("i", "Importing legacy profile from file " + file_name + ".") container_registry = ContainerRegistry.getInstance()