Skip to content

Commit

Permalink
Update sv_extra_search.py
Browse files Browse the repository at this point in the history
Fixes #5176
  • Loading branch information
vicdoval authored Dec 13, 2024
1 parent fcd7f1e commit 05027b4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ui/sv_extra_search.py
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ def ensure_valid_show_string(nodetype):

try:
loop_reverse[nodetype.bl_label] = nodetype.bl_idname
description = nodetype.bl_rna.docstring.get_shorthand()
description = SvDocstring(nodetype.bl_rna.description).get_shorthand()
return nodetype.bl_label + ensure_short_description(description)
except Exception as err:
sv_logger.error(f'Nodetype "{nodetype}": ensure_valid_show_string() threw an exception:\n {err}')
Expand Down

0 comments on commit 05027b4

Please sign in to comment.