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
path: root/doc
diff options
context:
space:
mode:
authorCampbell Barton <campbell@blender.org>2022-05-23 04:41:39 +0300
committerCampbell Barton <campbell@blender.org>2022-05-23 05:37:22 +0300
commit4d509fd6e14c475a2318ca37ba81ed04f7028ec1 (patch)
treec94cfdd111f3359089f9d5c1c74bf94b1b759afb /doc
parentc92f137a7556fe4a6b9256794ff741be2bf552fd (diff)
Fix error in sphinx_doc_gen.py when logging
Regression in 45ed325443a3a3afb57da25ad01d636a94bf6cee
Diffstat (limited to 'doc')
-rw-r--r--doc/python_api/sphinx_doc_gen.py2
1 files changed, 1 insertions, 1 deletions
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)