I’m getting this error. What might be the issue?
line 267, in match
report.report.addLogText('create new mesh', bRefresh=True)
^^^^^^^^^^^^^
AttributeError: 'Report' object has no attribute 'report'
I’m getting this error. What might be the issue?
line 267, in match
report.report.addLogText('create new mesh', bRefresh=True)
^^^^^^^^^^^^^
AttributeError: 'Report' object has no attribute 'report'
Try with only one .report
report.addLogText('create new mesh', bRefresh=True)
Works, thanks @ThomasBittner!