mirror of
https://github.com/IfcOpenShell/IfcOpenShell.git
synced 2026-08-11 02:02:22 +00:00
Fix bug where underlays didn't work
This commit is contained in:
@@ -173,7 +173,7 @@ class CreateDrawing(bpy.types.Operator):
|
||||
outfile.write(boilerplate.replace("</svg>", ""))
|
||||
if underlay:
|
||||
with open(underlay) as infile:
|
||||
for line in enumerate(infile):
|
||||
for i, line in enumerate(infile):
|
||||
if i < 2:
|
||||
continue
|
||||
elif "</svg>" in line:
|
||||
|
||||
Reference in New Issue
Block a user