Skip to content
This repository has been archived by the owner on May 6, 2019. It is now read-only.

Commit

Permalink
Update string formatting. Fix #3
Browse files Browse the repository at this point in the history
  • Loading branch information
giovanifss committed Apr 29, 2018
1 parent 63d13b4 commit 0dfa2cd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions core/utils/git.py
Expand Up @@ -35,7 +35,7 @@ def get_repo_authors(self, repository):
def get_authors(self, repo_path):
try:
if self.args.verbose:
Helpers.print_success("Collecting authors in ".format(repo_path))
Helpers.print_success("Collecting authors in {}".format(repo_path))
authors_set = set()
repo = Repository(repo_path)
for commit in repo.walk(repo.head.target, GIT_SORT_TOPOLOGICAL):
Expand All @@ -49,7 +49,7 @@ def get_authors(self, repo_path):
def clone_repo(self, repo):
try:
if self.args.verbose:
Helpers.print_success("Clonning {}".format(repo_url))
Helpers.print_success("Clonning {}".format(repo.url))
clone_repository(repo.url, self.get_repo_path(repo), bare=True)
return True

Expand Down

0 comments on commit 0dfa2cd

Please sign in to comment.