Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--release/scripts/modules/rna_xml.py11
1 files changed, 9 insertions, 2 deletions
diff --git a/release/scripts/modules/rna_xml.py b/release/scripts/modules/rna_xml.py
index d9fc09e7d18..58abb5c90db 100644
--- a/release/scripts/modules/rna_xml.py
+++ b/release/scripts/modules/rna_xml.py
@@ -26,14 +26,21 @@ def build_property_typemap(skip_classes, skip_typemap):
property_typemap = {}
for attr in dir(bpy.types):
+ # Skip internal methods.
+ if attr.startswith("_"):
+ continue
cls = getattr(bpy.types, attr)
if issubclass(cls, skip_classes):
continue
+ bl_rna = getattr(cls, "bl_rna", None)
+ # Needed to skip classes added to the modules `__dict__`.
+ if bl_rna is None:
+ continue
# # to support skip-save we can't get all props
- # properties = cls.bl_rna.properties.keys()
+ # properties = bl_rna.properties.keys()
properties = []
- for prop_id, prop in cls.bl_rna.properties.items():
+ for prop_id, prop in bl_rna.properties.items():
if not prop.is_skip_save:
properties.append(prop_id)