Cleanup: remove f-string use

This commit is contained in:
2020-08-21 23:13:43 +10:00
parent 995725c681
commit c00707c18d
2 changed files with 2 additions and 2 deletions

View File

@@ -478,7 +478,7 @@ texture_node_categories = [
def not_implemented_node(idname):
NodeType = getattr(bpy.types, idname)
name = NodeType.bl_rna.name
label = f"{name} (mockup)"
label = "%s (mockup)" % name
return NodeItem(idname, label=label)
simulation_node_categories = [