Skip to content

Commit 9b7930d

Browse files
committed
Improve log
1 parent d66779a commit 9b7930d

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

completion.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,11 +32,11 @@ def get_completion(clones_dir: str, repo: str) -> tuple[float, str, float]:
3232
clone_repo.git.switch(branch)
3333
clone_repo.git.pull()
3434
except git.GitCommandError:
35-
print(f'{repo} {branch}: failed to clone or switch to')
35+
print(f'failure: {branch} {repo}: clone or switch')
3636
branch = ''
3737
continue
3838
else:
39-
print(f'{repo} {branch}: successfully cloned or switched to')
39+
print(f'success: {branch} {repo}: clone or switch')
4040
break
4141
path_for_merge = Path(clones_dir, 'rebased_translations', repo)
4242
completion = potodo.merge_and_scan_paths(

0 commit comments

Comments
 (0)