1
0
Fork 0
mirror of https://github.com/opentx/opentx.git synced 2025-07-21 15:25:17 +03:00

Stamps generation bug

This commit is contained in:
bsongis 2012-05-01 20:41:25 +00:00
parent f45ae2da51
commit 14e446497d
2 changed files with 4 additions and 4 deletions

View file

@ -182,7 +182,7 @@ def generate_c9x_list(filename, hexes, extension, stamp, board):
f.write("const char *open9x_arm_binaries[] = {\n")
for hex in hexes:
f.write('"%s",\n' % hex)
f.write("0\n};")
f.write("0\n};\n")
if __name__ == "__main__":