mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-08 23:46:22 -06:00
Clarify error message a bit more
The QA engineer was a bit confused by this one. Let's make the language a bit easier.
This commit is contained in:
parent
6924d28ee7
commit
f91c696e4b
1 changed files with 2 additions and 2 deletions
|
@ -39,12 +39,12 @@ class SendMaterialJob(Job):
|
||||||
try:
|
try:
|
||||||
remote_materials_list = json.loads(remote_materials_list)
|
remote_materials_list = json.loads(remote_materials_list)
|
||||||
except json.JSONDecodeError:
|
except json.JSONDecodeError:
|
||||||
Logger.log("e", "Current material storage on printer was a corrupted reply.")
|
Logger.log("e", "Request material storage on printer: I didn't understand the printer's answer.")
|
||||||
return
|
return
|
||||||
try:
|
try:
|
||||||
remote_materials_by_guid = {material["guid"]: material for material in remote_materials_list} #Index by GUID.
|
remote_materials_by_guid = {material["guid"]: material for material in remote_materials_list} #Index by GUID.
|
||||||
except KeyError:
|
except KeyError:
|
||||||
Logger.log("e", "Current material storage on printer was an invalid reply (missing GUIDs).")
|
Logger.log("e", "Request material storage on printer: Printer's answer was missing GUIDs.")
|
||||||
return
|
return
|
||||||
|
|
||||||
container_registry = ContainerRegistry.getInstance()
|
container_registry = ContainerRegistry.getInstance()
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue