Skip to content

Commit

Permalink
Show directory
Browse files Browse the repository at this point in the history
  • Loading branch information
mernst committed Oct 30, 2023
1 parent e8b922e commit d10a6e6
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions src/python/merge_analyzer.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,9 +64,13 @@ def merge_analyzer( # pylint: disable=too-many-locals
right_success, _ = repo_right.checkout(merge_data["right"])

if not left_success:
raise Exception("git checkout failed: ", repo_left, merge_data["left"])
raise Exception(
"git checkout failed: ", repo_left.repo_path, merge_data["left"]
)
if not right_success:
raise Exception("git checkout failed: ", repo_right, merge_data["right"])
raise Exception(
"git checkout failed: ", repo_right.repo_path, merge_data["right"]
)

# Compute diff size in lines between left and right
assert repo_left.repo_path.exists()
Expand Down

0 comments on commit d10a6e6

Please sign in to comment.