Skip to content

Commit

Permalink
Bug fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Chalkman071 committed Dec 29, 2024
1 parent f8dc153 commit 9e1634d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion editor-blender/core/actions/state/load/load.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ async def fetch_data(reload: bool = False):
local_load_hash: dict[str, Any] = {}

if not os.path.exists(config.ASSET_PATH):
os.mkdir(config.ASSET_PATH)
os.makedirs(config.ASSET_PATH, exist_ok=True)

if not os.path.exists(local_load_hash_path):
with open(local_load_hash_path, "w") as file:
Expand Down

0 comments on commit 9e1634d

Please sign in to comment.