From ce709bf24a507f6855b1f8e8cee2bf0d58e17445 Mon Sep 17 00:00:00 2001 From: ChrisTerBeke Date: Fri, 19 Jan 2018 10:48:45 +0100 Subject: [PATCH] Remove debug print - CURA-4829 --- cura/Settings/CuraContainerRegistry.py | 1 - 1 file changed, 1 deletion(-) diff --git a/cura/Settings/CuraContainerRegistry.py b/cura/Settings/CuraContainerRegistry.py index b73bec11a7..4567226060 100644 --- a/cura/Settings/CuraContainerRegistry.py +++ b/cura/Settings/CuraContainerRegistry.py @@ -205,7 +205,6 @@ class CuraContainerRegistry(ContainerRegistry): profile_reader = plugin_registry.getPluginObject(plugin_id) try: profile_or_list = profile_reader.read(file_name) # Try to open the file with the profile reader. - print except Exception as e: # Note that this will fail quickly. That is, if any profile reader throws an exception, it will stop reading. It will only continue reading if the reader returned None. Logger.log("e", "Failed to import profile from %s: %s while using profile reader. Got exception %s", file_name,profile_reader.getPluginId(), str(e))