forked from blender/blender
BLEN-358: Error in console after closing Blender #22
No reviewers
Labels
No Label
No Milestone
No Assignees
3 Participants
Notifications
Due Date
No due date set.
Dependencies
No dependencies set.
Reference: BogdanNagirniak/blender#22
Loading…
Reference in New Issue
Block a user
No description provided.
Delete Branch "BLEN-358_1"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Purpose
BogdanNagirniak/blender-addons#4 doesn’t fix fully fix issue.
Technical steps
Added catching and print exception on Python side.
@ -109,0 +109,4 @@
try:
doc = mx_utils.export(material, None)
except:
traceback.print_exc()
Move this to end of function with comment like "Important: code shouldn't raise any exception ...."
@ -119,0 +121,4 @@
# This code shouldn't raise any exception due to breaking refcounts on RenderEngine
except:
traceback.print_exc()
return ""
remove
return ""
from here, move comment underexcept: