mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-06 22:47:29 -06:00
Fixed possibly wrong error message
CURA-10180
This commit is contained in:
parent
d80e349f0b
commit
0450a3b09c
1 changed files with 1 additions and 1 deletions
|
@ -98,7 +98,7 @@ class ThreeMFWorkspaceWriter(WorkspaceWriter):
|
||||||
Logger.error("No permission to write workspace to this stream.")
|
Logger.error("No permission to write workspace to this stream.")
|
||||||
return False
|
return False
|
||||||
except EnvironmentError as e:
|
except EnvironmentError as e:
|
||||||
self.setInformation(catalog.i18nc("@error:zip", "The operating system does not allow saving a project file to this location or with this file name."))
|
self.setInformation(catalog.i18nc("@error:zip", str(e)))
|
||||||
Logger.error("EnvironmentError when writing workspace to this stream: {err}".format(err = str(e)))
|
Logger.error("EnvironmentError when writing workspace to this stream: {err}".format(err = str(e)))
|
||||||
return False
|
return False
|
||||||
mesh_writer.setStoreArchive(False)
|
mesh_writer.setStoreArchive(False)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue