[Bf-blender-cvs] [4d509fd6e14] master: Fix error in sphinx_doc_gen.py when logging

Campbell Barton noreply at git.blender.org
Mon May 23 04:38:42 CEST 2022


Commit: 4d509fd6e14c475a2318ca37ba81ed04f7028ec1
Author: Campbell Barton
Date:   Mon May 23 11:41:39 2022 +1000
Branches: master
https://developer.blender.org/rB4d509fd6e14c475a2318ca37ba81ed04f7028ec1

Fix error in sphinx_doc_gen.py when logging

Regression in 45ed325443a3a3afb57da25ad01d636a94bf6cee

===================================================================

M	doc/python_api/sphinx_doc_gen.py

===================================================================

diff --git a/doc/python_api/sphinx_doc_gen.py b/doc/python_api/sphinx_doc_gen.py
index 0ba0d521a0a..fe723d88c2a 100644
--- a/doc/python_api/sphinx_doc_gen.py
+++ b/doc/python_api/sphinx_doc_gen.py
@@ -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)



More information about the Bf-blender-cvs mailing list