From 0216a73cb5c85ec21f97e936f641844fb759fb02 Mon Sep 17 00:00:00 2001 From: Austin Bozowski Date: Fri, 27 May 2022 20:10:37 +0000 Subject: [PATCH] Group --- examples/chef/chef.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/chef/chef.py b/examples/chef/chef.py index 31e4993a4e4978..18f57366c63313 100755 --- a/examples/chef/chef.py +++ b/examples/chef/chef.py @@ -122,7 +122,7 @@ def generate_device_manifest( """ ci_manifest = {} for device_name in _DEVICE_LIST: - device_file_path = os.path.join(_CHEF_DEVICES_DIR, device_dir_item) + device_file_path = os.path.join(_DEVICE_FOLDER, device_dir_item) with open(device_file_path, "rb") as device_file: device_file_data = device_file.read() device_file_md5 = hashlib.md5(device_file_data).hexdigest()