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:
authorBastien Montagne <montagne29@wanadoo.fr>2012-07-03 17:15:23 +0400
committerBastien Montagne <montagne29@wanadoo.fr>2012-07-03 17:15:23 +0400
commit1f81930ad8987994b39b60aeae4ea1eb7dfaeb26 (patch)
treefaceef5c74b9c1f623dda3f35b351a2964e24cff
parent971ffd8fad73554e166d26d2a698ab7974cac497 (diff)
Minor edits.
-rw-r--r--release/scripts/modules/bl_i18n_utils/bl_process_msg.py8
1 files changed, 5 insertions, 3 deletions
diff --git a/release/scripts/modules/bl_i18n_utils/bl_process_msg.py b/release/scripts/modules/bl_i18n_utils/bl_process_msg.py
index fcbac8a6795..5c7fc9306f6 100644
--- a/release/scripts/modules/bl_i18n_utils/bl_process_msg.py
+++ b/release/scripts/modules/bl_i18n_utils/bl_process_msg.py
@@ -108,8 +108,10 @@ def dump_messages_rna(messages, check_ctxt):
path_resolve = type(bpy.context).__base__.path_resolve
for idname in op_ids:
op = get_instance(idname)
- if 'INTERNAL' in path_resolve(op, "bl_options"):
- blacklist_rna_class.append(idname)
+ # XXX Do not skip INTERNAL's anymore, some of those ops
+ # show up in UI now!
+# if 'INTERNAL' in path_resolve(op, "bl_options"):
+# blacklist_rna_class.append(idname)
# ---------------------------------------------------------------------
# Collect builtin classes we don't need to doc
@@ -467,7 +469,7 @@ def dump_messages(do_messages, do_checks):
for c in check_ctxt.values():
keys |= c
# XXX Temp, see below
- c -= check_ctxt["multi_rnatip"]
+ keys -= check_ctxt["multi_rnatip"]
for key in keys:
if key in check_ctxt["undoc_ops"]:
print("\tThe following operators are undocumented:")