From 448eeb681aa414257a75356d7e6c65e0672980d5 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Wed, 9 Jun 2021 03:12:45 +1000 Subject: Update for changes in the Python API using keyword only arguments --- mesh_looptools.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'mesh_looptools.py') diff --git a/mesh_looptools.py b/mesh_looptools.py index d13c4213..a2147cb7 100644 --- a/mesh_looptools.py +++ b/mesh_looptools.py @@ -3433,8 +3433,7 @@ class Bridge(Operator): if self.remove_faces and old_selected_faces: bridge_remove_internal_faces(bm, old_selected_faces) # make sure normals are facing outside - bmesh.update_edit_mesh(object.data, loop_triangles=False, - destructive=True) + bmesh.update_edit_mesh(object.data, loop_triangles=False, destructive=True) bpy.ops.mesh.normals_make_consistent() # cleaning up -- cgit v1.2.3