Skip to content

Commit

Permalink
Fix typo in log line in utils.check_dir()
Browse files Browse the repository at this point in the history
  • Loading branch information
user committed Dec 17, 2024
1 parent 5761612 commit ce8e279
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion avtdl/core/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ def check_dir(path: Path, create=True) -> bool:
if path.is_dir() and os.access(path, mode=os.W_OK):
return True
elif create:
logging.info(f'directory {path} does not exists, creating')
logging.info(f'directory {path} does not exist, creating')
try:
path.mkdir(parents=True, exist_ok=True)
return True
Expand Down

0 comments on commit ce8e279

Please sign in to comment.