From ce3b232c4b3ea459e7183e47eb4fbe3a752b2ca3 Mon Sep 17 00:00:00 2001 From: midoks Date: Sat, 11 Feb 2023 04:03:41 +0800 Subject: [PATCH] Update mw.py --- class/core/mw.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/class/core/mw.py b/class/core/mw.py index daa610164..a782d6338 100755 --- a/class/core/mw.py +++ b/class/core/mw.py @@ -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):