diff options
-rwxr-xr-x | doc/tools/make_rst.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/tools/make_rst.py b/doc/tools/make_rst.py index 0d88ce4998..b5e5cf8fa7 100755 --- a/doc/tools/make_rst.py +++ b/doc/tools/make_rst.py @@ -947,7 +947,7 @@ def rstize_text(text, state): # type: (str, State) -> str print_error( "Unresolved theme item '{}', file: {}".format(param, state.current_class), state ) - ref_type = "_theme_item" + ref_type = "_theme_{}".format(class_def.theme_items[method_param].data_name) elif cmd.startswith("signal"): if method_param not in class_def.signals: |