Fix error in sphinx_doc_gen.py when logging

Regression in 45ed325443
This commit is contained in:
Campbell Barton 2022-05-23 11:41:39 +10:00
parent c92f137a75
commit 4d509fd6e1
1 changed files with 1 additions and 1 deletions

View File

@ -976,7 +976,7 @@ def pymodule2sphinx(basepath, module_name, module, title, module_all_extra):
write_indented_lines(" ", fw, "Constant value %s" % repr(value), False)
fw("\n")
else:
BPY_LOGGER.debug("\tnot documenting %s.%s of %r type", (module_name, attribute, value_type.__name__))
BPY_LOGGER.debug("\tnot documenting %s.%s of %r type", module_name, attribute, value_type.__name__)
continue
attribute_set.add(attribute)