System Information
Operating system: macOS-10.13.6-x86_64-i386-64bit 64 Bits
Blender Version
Broken: version: 3.2.0 Alpha, branch: master, commit date: 2022-04-03 17:57, hash: rB637fe6f5ff9c
Worked: 3.2 from 2-3 weeks ago? something like that
Short description of error
SystemError: More keyword list entries (5) than format specifiers (4)
Exact steps for others to reproduce the error
add cube, have it selected and active, run script
import bpy import bmesh c = bpy.context o = c.active_object depsgraph = c.evaluated_depsgraph_get() eo = o.evaluated_get(depsgraph) bm = bmesh.new() bm.from_object(eo, depsgraph, cage=False, face_normals=True)
output
Traceback (most recent call last): File "/Text", line 9, in <module> SystemError: More keyword list entries (5) than format specifiers (4) Error: Python script failed, check the message in the system console