Skip to content

Commit 5d03564

Browse files
committed
fix(GitRemoteRefNotFound) Fix message
1 parent 487ef41 commit 5d03564

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/libvcs/sync/git.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ class GitRemoteRefNotFound(exc.CommandError):
7373

7474
def __init__(self, git_tag: str, ref_output: str, *args: object) -> None:
7575
return super().__init__(
76-
f"Could not fetch remote in refs/remotes/{git_tag}:Output: {ref_output}",
76+
f"Could not fetch remote in refs/remotes/{git_tag}. Output: {ref_output}",
7777
)
7878

7979

0 commit comments

Comments
 (0)