Merge branch 'blender-v2.81-release'

This commit is contained in:
Campbell Barton
2019-10-18 18:51:46 +11:00
6 changed files with 74 additions and 30 deletions

View File

@@ -80,10 +80,6 @@ rna_module_prop = StringProperty(
def context_path_validate(context, data_path):
# Silently ignore invalid data paths created by T65397.
if "(null)" in data_path:
return Ellipsis
try:
value = eval("context.%s" % data_path) if data_path else Ellipsis
except AttributeError as ex: