From 4d509fd6e14c475a2318ca37ba81ed04f7028ec1 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Mon, 23 May 2022 11:41:39 +1000 Subject: Fix error in sphinx_doc_gen.py when logging Regression in 45ed325443a3a3afb57da25ad01d636a94bf6cee --- doc/python_api/sphinx_doc_gen.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'doc') 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) -- cgit v1.2.3