Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
valeksiev committed Dec 5, 2024
1 parent bb9a38f commit ddd9b6c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ingest.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ async def ensure_cloned(repo_name: str, path: str):
logger.info(f"Repository {path} already cloned.")
repo = Repo.init(path)
else:
logger.info(f"Closning repository: {path}")
logger.info(f"Cloning repository: {path}")
repo = Repo.clone_from(repo_name, path, branch="main")

repo.heads.main.checkout()
Expand Down

0 comments on commit ddd9b6c

Please sign in to comment.