refactor: remove unneeded patch_count variable (#28467)

This commit is contained in:
Samuel Attard 2021-04-01 16:27:35 -07:00 committed by GitHub
parent 976222b509
commit e323bfe661
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -306,7 +306,6 @@ def export_patches(repo, out_dir, patch_range=None, dry_run=False):
# If we're doing a dry run, iterate through each patch and see if the newly
# exported patch differs from what exists. Report number of mismatched
# patches and fail if there's more than one.
patch_count = 0
bad_patches = []
for patch in patches:
filename = get_file_name(patch)
@ -314,12 +313,11 @@ def export_patches(repo, out_dir, patch_range=None, dry_run=False):
existing_patch = unicode(io.open(filepath, 'rb').read(), "utf-8")
formatted_patch = join_patch(patch)
if formatted_patch != existing_patch:
patch_count += 1
bad_patches.append(filename)
if patch_count > 0:
if len(bad_patches) > 0:
sys.stderr.write(
"Patches in {} not up to date: {} patches need update\n-- {}\n".format(
out_dir, patch_count, "\n-- ".join(bad_patches)
out_dir, len(bad_patches), "\n-- ".join(bad_patches)
)
)
exit(1)