From 1f81930ad8987994b39b60aeae4ea1eb7dfaeb26 Mon Sep 17 00:00:00 2001 From: Bastien Montagne Date: Tue, 3 Jul 2012 13:15:23 +0000 Subject: Minor edits. --- release/scripts/modules/bl_i18n_utils/bl_process_msg.py | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) (limited to 'release/scripts/modules/bl_i18n_utils') 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:") -- cgit v1.2.3