Fixed typo related to f.close() (#155)

This commit is contained in:
MilkClouds 2022-09-30 01:55:43 +09:00 committed by GitHub
parent c770a2ba7d
commit ed2529e620
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 1 additions and 2 deletions

View File

@ -67,4 +67,3 @@ with open(download_dir/tempScript, 'a') as f:
f.writelines(f' out={brand}-{arch}-{variant}.zip\n')
elif brand == "MindTheGapps":
f.writelines(f' out={brand}-{arch}.zip\n')
f.close

View File

@ -112,4 +112,4 @@ for i, v, f in identities:
tmpdownlist.writelines(f'https://aka.ms/Microsoft.VCLibs.{arch}.14.00.Desktop.appx\n')
tmpdownlist.writelines(f' dir={download_dir}\n')
tmpdownlist.writelines(f' out=vclibs-{arch}.appx\n')
tmpdownlist.close
tmpdownlist.close()