Update mw.py

This commit is contained in:
midoks 2023-02-11 04:03:41 +08:00
parent ec7ae65f7d
commit ce3b232c4b
1 changed files with 2 additions and 2 deletions

View File

@ -283,9 +283,9 @@ def opLuaMake(cmd_name):
for f in files:
t = readFile(f)
f_base = os.path.basename(f)
content += '-- ' + '*' * 20 + f_base + ' start ' + '*' * 20 + "\n"
content += '-- ' + '*' * 20 + ' ' + f_base + ' start ' + '*' * 20 + "\n"
content += t
content += "\n" + '-- ' + '*' * 20 + f_base + ' end ' + '*' * 20 + "\n"
content += "\n" + '-- ' + '*' * 20 + ' ' + f_base + ' end ' + '*' * 20 + "\n"
writeFile(dst_path, content)
else:
if os.path.exists(dst_path):