Cleanup: remove redundant iface_ call

This commit is contained in:
Campbell Barton
2024-01-23 14:06:41 +11:00
parent 1fa896bb9a
commit 8a9db8cfa7

View File

@@ -2284,7 +2284,7 @@ class USERPREF_PT_addons(AddOnPanel, Panel):
sub = row.row()
sub.active = is_enabled
sub.label(text=iface_("%s: %s") % (iface_(info["category"]), iface_(info["name"])))
sub.label(text="%s: %s" % (iface_(info["category"]), iface_(info["name"])))
if info["warning"]:
sub.label(icon='ERROR')