Cleanup: remove f-string use

This commit is contained in:
Campbell Barton 2020-10-16 14:06:47 +11:00
parent 507e7bcbdb
commit 9fb2ce70d6
1 changed files with 1 additions and 1 deletions

View File

@ -1036,7 +1036,7 @@ class USERPREF_PT_theme_collection_colors(ThemePanel, CenterAlignMixIn, Panel):
flow = layout.grid_flow(row_major=False, columns=0, even_columns=True, even_rows=False, align=False)
for i, ui in enumerate(theme.collection_color, 1):
flow.prop(ui, "color", text=iface_(f"Color {i:d}"), translate=False)
flow.prop(ui, "color", text=iface_("Color %d") % i, translate=False)
# Base class for dynamically defined theme-space panels.