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:
authorCampbell Barton <ideasman42@gmail.com>2010-08-19 18:43:52 +0400
committerCampbell Barton <ideasman42@gmail.com>2010-08-19 18:43:52 +0400
commit8e388a8f49da1f8709db3ace0b6590ac71503c6c (patch)
treef2685344cb66c96b07bfaf9abeb3954d156fae88 /release/scripts/modules/rna_info.py
parent486b3cd2f540f3670e38cf60550100d1689c74c2 (diff)
fixes for recent renaming
Diffstat (limited to 'release/scripts/modules/rna_info.py')
-rw-r--r--release/scripts/modules/rna_info.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/release/scripts/modules/rna_info.py b/release/scripts/modules/rna_info.py
index 98cd4bcbd3a..0a93121c559 100644
--- a/release/scripts/modules/rna_info.py
+++ b/release/scripts/modules/rna_info.py
@@ -595,7 +595,7 @@ def BuildRNAInfo():
op_mods = dir(bpy.ops)
for op_mod_name in sorted(op_mods):
- if op_mod_name.startswith('__') or op_mod_name in ("add", "remove"):
+ if op_mod_name.startswith('__'):
continue
op_mod = getattr(bpy.ops, op_mod_name)
@@ -647,6 +647,7 @@ if __name__ == "__main__":
if bpy.app.background:
import sys
sys.stderr.write("\n".join(data))
+ sys.stderr.write("\n\nEOF\n")
else:
text = bpy.data.texts.new(name="api.py")
text.from_string(data)