From 15ba76284732467653c544799d686c5123657ac9 Mon Sep 17 00:00:00 2001 From: Ghostkeeper Date: Fri, 20 Dec 2019 09:54:07 +0100 Subject: [PATCH] Fix spelling of error message in the log Found during investigation of #6828. --- cura/Settings/CuraFormulaFunctions.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cura/Settings/CuraFormulaFunctions.py b/cura/Settings/CuraFormulaFunctions.py index b35069da6f..f39435be60 100644 --- a/cura/Settings/CuraFormulaFunctions.py +++ b/cura/Settings/CuraFormulaFunctions.py @@ -43,7 +43,7 @@ class CuraFormulaFunctions: extruder_stack = global_stack.extruderList[int(extruder_position)] except IndexError: if extruder_position != 0: - Logger.log("w", "Value for %s of extruder %s was requested, but that extruder is not available. Returning the result form extruder 0 instead" % (property_key, extruder_position)) + Logger.log("w", "Value for %s of extruder %s was requested, but that extruder is not available. Returning the result from extruder 0 instead" % (property_key, extruder_position)) # This fixes a very specific fringe case; If a profile was created for a custom printer and one of the # extruder settings has been set to non zero and the profile is loaded for a machine that has only a single extruder # it would cause all kinds of issues (and eventually a crash).