Browse Source

Fix spelling of error message in the log

Found during investigation of #6828.
Ghostkeeper 5 years ago
parent
commit
15ba762847
1 changed files with 1 additions and 1 deletions
  1. 1 1
      cura/Settings/CuraFormulaFunctions.py

+ 1 - 1
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).