diff options
author | Matthias Hoelzl <tc@xantira.com> | 2017-08-26 20:47:23 +0200 |
---|---|---|
committer | Matthias Hoelzl <tc@xantira.com> | 2017-08-27 23:05:39 +0200 |
commit | a919a013f53bdd9535d248ad9fdbb586c342a4d6 (patch) | |
tree | 5cd9fe7d459db9d9d0f974b479e5292ea2c8877b /main/SCsub | |
parent | 9e0fbb49c12a4bb12c275194b0599fdfa0b1aabf (diff) |
Fix mixed tab/whitespace in build files
Diffstat (limited to 'main/SCsub')
-rw-r--r-- | main/SCsub | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/main/SCsub b/main/SCsub index 1675a6e6ab..f0ff9e9639 100644 --- a/main/SCsub +++ b/main/SCsub @@ -18,7 +18,7 @@ def make_splash(target, source, env): g.write("static const Color boot_splash_bg_color = Color(1,1,1,1);\n"); g.write("static const unsigned char boot_splash_png[] = {\n") for i in range(len(buf)): - g.write(str(ord(buf[i])) + ",\n") + g.write(str(ord(buf[i])) + ",\n") g.write("};\n") g.write("#endif") @@ -37,7 +37,7 @@ def make_app_icon(target, source, env): g.write("#define APP_ICON_H\n") g.write("static const unsigned char app_icon_png[] = {\n") for i in range(len(buf)): - g.write(str(ord(buf[i])) + ",\n") + g.write(str(ord(buf[i])) + ",\n") g.write("};\n") g.write("#endif") |