From e31e668703db4d115f084795929bec0f5987b1ed Mon Sep 17 00:00:00 2001 From: Austin Bozowski Date: Tue, 31 May 2022 06:34:17 +0000 Subject: [PATCH] Format --- examples/chef/chef.py | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/examples/chef/chef.py b/examples/chef/chef.py index efe1f5c57a1106..e1cdb4eebf0873 100755 --- a/examples/chef/chef.py +++ b/examples/chef/chef.py @@ -132,7 +132,7 @@ def generate_device_manifest( device_file_data = device_file.read() device_file_md5 = hashlib.md5(device_file_data).hexdigest() devices_manifest[device_name] = device_file_md5 - flush_print(f"Manifest for {device_name} : {device_file_md5}") + flush_print(f"Current digest for {device_name} : {device_file_md5}") if write_manifest_file: device_zzz_dir_root = os.path.join(_CHEF_ZZZ_ROOT, device_name) device_zzz_md5_file = os.path.join(device_zzz_dir_root, _CI_DEVICE_MANIFEST_NAME) @@ -272,7 +272,8 @@ def main(argv: Sequence[str]) -> None: if options.validate_zzz: flush_print(f"Validating\n{_CI_MANIFEST_FILE_NAME}\n{_CHEF_ZZZ_ROOT}\n", with_border=True) - fix_instructions = """Cached files out of date! + fix_instructions = """ + Cached files out of date! Please: ./scripts/bootstrap.sh source ./scripts/activate.sh @@ -291,18 +292,18 @@ def main(argv: Sequence[str]) -> None: zzz_dir = os.path.join(_CHEF_ZZZ_ROOT, device) device_md5_file = os.path.join(zzz_dir, _CI_DEVICE_MANIFEST_NAME) if device not in cached_device_manifest: - flush_print(f"NOT IN MANIFEST - {fix_instructions}") + flush_print(f"NOT IN MANIFEST {device} - {fix_instructions}") elif cached_device_manifest[device] != device_md5: - flush_print(f"MANIFEST MISMATCH - {fix_instructions}") + flush_print(f"MANIFEST MISMATCH {device} - {fix_instructions}") exit(1) elif not os.path.exists(device_md5_file): - flush_print(f"OUTPUT MISSING {fix_instructions}") + flush_print(f"OUTPUT MISSING {device} - {fix_instructions}") exit(1) else: with open(device_md5_file, "r", encoding="utf-8") as md5_file: output_cached_md5 = md5_file.read() if output_cached_md5 != device_md5: - flush_print(f"MISMATCH OUTPUT - {fix_instrucitons}") + flush_print(f"MISMATCH OUTPUT {device} - {fix_instrucitons}") exit(1) if False: # Disabled; should check: