Browse Source

Remove message explaining what caused the error

It doesn't matter to the user. Only the error message matters.

Contributes to issue CURA-8609.
Ghostkeeper 3 years ago
parent
commit
67cae04a24
1 changed files with 1 additions and 1 deletions
  1. 1 1
      cura/UltimakerCloud/CloudMaterialSync.py

+ 1 - 1
cura/UltimakerCloud/CloudMaterialSync.py

@@ -182,7 +182,7 @@ class CloudMaterialSync(QObject):
             return
         if job_result == UploadMaterialsJob.Result.FAILED:
             if isinstance(job_error, UploadMaterialsError):
-                self.sync_all_dialog.setProperty("syncStatusText", catalog.i18nc("@text", "Error sending materials to the Digital Factory:") + " " + str(job_error))
+                self.sync_all_dialog.setProperty("syncStatusText", str(job_error))
             else:  # Could be "None"
                 self.sync_all_dialog.setProperty("syncStatusText", catalog.i18nc("@text", "Unknown error."))
             self._export_upload_status = "error"