Skip to content

Commit

Permalink
Fixing more silly mistakes
Browse files Browse the repository at this point in the history
  • Loading branch information
CoolCat467 committed May 28, 2023
1 parent 87e45a5 commit 34ffced
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/StatusBot/update.py
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ def make_dirpath_exist(filepath: str) -> None:
"""Ensure full folder structure to file path given exists.
If not exists, creates it."""
os.makedirs(filepath, exist_ok=True)
os.makedirs(os.path.dirname(filepath), exist_ok=True)


async def download_coroutine(
Expand Down

0 comments on commit 34ffced

Please sign in to comment.