Minor edits.

This commit is contained in:
2012-07-03 13:15:23 +00:00
parent 971ffd8fad
commit 1f81930ad8

View File

@@ -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:")