🐛 修正路徑

This commit is contained in:
踢低吸 2022-08-31 09:19:39 +00:00
parent 4f35f23140
commit 0585273589

View File

@ -25,5 +25,5 @@ with open(f'../{files}', 'r') as f:
else:
newversion += str(int(version[1])+1)
with open(files, 'w') as f_:
with open(f'../{files}', 'w') as f_:
f_.write(read_file.replace(''.join(version), newversion))