|
@@ -34,7 +34,7 @@ def make_editor_icons_action(target, source, env):
|
|
|
s.write("/* THIS FILE IS GENERATED DO NOT EDIT */\n")
|
|
|
s.write("#ifndef _EDITOR_ICONS_H\n")
|
|
|
s.write("#define _EDITOR_ICONS_H\n")
|
|
|
- s.write("static const int editor_icons_count = %s;\n" % len(svg_icons))
|
|
|
+ s.write("static const int editor_icons_count = {};\n".format(len(svg_icons)))
|
|
|
s.write("static const char *editor_icons_sources[] = {\n")
|
|
|
s.write(icons_string.getvalue())
|
|
|
s.write('};\n\n')
|
|
@@ -57,7 +57,7 @@ def make_editor_icons_action(target, source, env):
|
|
|
if icon_name.endswith("BigThumb"): # don't know a better way to handle this
|
|
|
thumb_big_indices.append(str(index))
|
|
|
|
|
|
- s.write('\t"%s"' % icon_name)
|
|
|
+ s.write('\t"{0}"'.format(icon_name))
|
|
|
|
|
|
if fname != svg_icons[-1]:
|
|
|
s.write(",")
|
|
@@ -69,13 +69,13 @@ def make_editor_icons_action(target, source, env):
|
|
|
|
|
|
if thumb_medium_indices:
|
|
|
s.write("\n\n")
|
|
|
- s.write("static const int editor_md_thumbs_count = %s;\n" % len(thumb_medium_indices))
|
|
|
+ s.write("static const int editor_md_thumbs_count = {};\n".format(len(thumb_medium_indices)))
|
|
|
s.write("static const int editor_md_thumbs_indices[] = {")
|
|
|
s.write(", ".join(thumb_medium_indices))
|
|
|
s.write("};\n")
|
|
|
if thumb_big_indices:
|
|
|
s.write("\n\n")
|
|
|
- s.write("static const int editor_bg_thumbs_count = %s;\n" % len(thumb_big_indices))
|
|
|
+ s.write("static const int editor_bg_thumbs_count = {};\n".format(len(thumb_big_indices)))
|
|
|
s.write("static const int editor_bg_thumbs_indices[] = {")
|
|
|
s.write(", ".join(thumb_big_indices))
|
|
|
s.write("};\n")
|