diff --git a/commonlibrary/toolchain/libc-test/tar_files.py b/commonlibrary/toolchain/libc-test/tar_files.py index e5b0e69adb854393f528e487227616ca2b321fda..356f7f2eed42641d14ee801405841fbc579984aa 100755 --- a/commonlibrary/toolchain/libc-test/tar_files.py +++ b/commonlibrary/toolchain/libc-test/tar_files.py @@ -33,13 +33,13 @@ def copyFiles(sourceDir, targetDir): continue if os.path.exists(targetDir): copyFileCounts += 1 - with open(targetF, "wb") as fp: - fp.write(open(sourceF, "rb").read()) + with open(targetF, "wb") as target_open: + target_open.write(open(sourceF, "rb").read()) elif not os.path.exists(targetDir): os.makedirs(targetDir) copyFileCounts += 1 - with open(targetF, "wb") as fp: - fp.write(open(sourceF, "rb").read()) + with open(targetF, "wb") as target_open: + target_open.write(open(sourceF, "rb").read()) def make_targz_one_by_one(output_filename, source_dir): tar = tarfile.open(output_filename,"w")