Skip to content

Commit

Permalink
mr/show: Fix glitch in error message
Browse files Browse the repository at this point in the history
The remote name in the output isn't separated from the next word.
  • Loading branch information
fmuellner authored and prarit committed Dec 6, 2020
1 parent 8486750 commit 845de95
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmd/mr_show.go
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ func findLocalRemote(ProjectID int) string {
}

if remote == "" {
log.Fatal("remote for ", project.NameWithNamespace, "not found in local remotes")
log.Fatal("remote for ", project.NameWithNamespace, " not found in local remotes")
}
return remote
}
Expand Down

0 comments on commit 845de95

Please sign in to comment.