Browse Source

Some small fixes to warnings in python scripts

unknown 6 years ago
parent
commit
f236b460e5
2 changed files with 4 additions and 6 deletions
  1. 4 4
      editor/editor_builders.py
  2. 0 2
      modules/mono/build_scripts/mono_reg_utils.py

+ 4 - 4
editor/editor_builders.py

@@ -63,8 +63,8 @@ def make_fonts_header(target, source, env):
 
 
         g.write("static const int _font_" + name + "_size = " + str(len(buf)) + ";\n")
         g.write("static const int _font_" + name + "_size = " + str(len(buf)) + ";\n")
         g.write("static const unsigned char _font_" + name + "[] = {\n")
         g.write("static const unsigned char _font_" + name + "[] = {\n")
-        for i in range(len(buf)):
-            g.write("\t" + byte_to_str(buf[i]) + ",\n")
+        for j in range(len(buf)):
+            g.write("\t" + byte_to_str(buf[j]) + ",\n")
 
 
         g.write("};\n")
         g.write("};\n")
 
 
@@ -97,8 +97,8 @@ def make_translations_header(target, source, env):
         name = os.path.splitext(os.path.basename(sorted_paths[i]))[0]
         name = os.path.splitext(os.path.basename(sorted_paths[i]))[0]
 
 
         g.write("static const unsigned char _translation_" + name + "_compressed[] = {\n")
         g.write("static const unsigned char _translation_" + name + "_compressed[] = {\n")
-        for i in range(len(buf)):
-            g.write("\t" + byte_to_str(buf[i]) + ",\n")
+        for j in range(len(buf)):
+            g.write("\t" + byte_to_str(buf[j]) + ",\n")
 
 
         g.write("};\n")
         g.write("};\n")
 
 

+ 0 - 2
modules/mono/build_scripts/mono_reg_utils.py

@@ -116,5 +116,3 @@ def find_msbuild_tools_path_reg():
             return value
             return value
     except (WindowsError, OSError):
     except (WindowsError, OSError):
         return ''
         return ''
-
-    return ''