diff --git a/cura/CuraApplication.py b/cura/CuraApplication.py index 766d49fcea..e3465e6af5 100755 --- a/cura/CuraApplication.py +++ b/cura/CuraApplication.py @@ -1941,14 +1941,7 @@ class CuraApplication(QtApplication): try: result = workspace_reader.preRead(file_path, show_dialog=False) return result == WorkspaceReader.PreReadResult.accepted - except FileNotFoundError: - result_message = Message(text = self._i18n_catalog.i18nc("@info:status Don't translate the XML tag !", - "Failed to load {0}. File is moved or deleted.", - file_path), lifetime = 0, - title = self._i18n_catalog.i18nc("@info:title", "Unable to Open File")) - result_message.show() - return False - except Exception: + except: Logger.logException("e", "Could not check file %s", file_url) return False