From 3cae95cdc4e3ec7f94e2b3f0360066ed076a748b Mon Sep 17 00:00:00 2001 From: Austin Bozowski Date: Fri, 10 Jun 2022 08:15:22 +0000 Subject: [PATCH] [no ci] Minor --- 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 7d1a843fa18033..37108195cf8cc3 100755 --- a/examples/chef/chef.py +++ b/examples/chef/chef.py @@ -269,7 +269,7 @@ def bundle_esp32(device_name: str) -> None: if os.sep in item: new_dir = item[:item.rindex(os.sep)] new_dir = os.path.join(_CD_STAGING_DIR, new_dir) - os.makedirs(new_dir, exists_ok=True) + os.makedirs(new_dir, exist_ok=True) src_item = os.path.join(esp_root, item) dest_item = os.path.join(_CD_STAGING_DIR, item) shutil.copy(src_item, dest_item)