Skip to content

Commit 686b195

Browse files
committed
Add spacing to nonexistent branch alert
1 parent b3663ae commit 686b195

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cls/SourceControl/Git/Utils.cls

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -407,7 +407,7 @@ ClassMethod SwitchBranch(targetBranchName As %String) As %Status
407407
do ..RunGitWithArgs(.errStream,.outStream,"local-branches","branch", "--verbose")
408408
set branches = outStream.Read()
409409
if ('$find(branches,targetBranchName)) {
410-
quit $$$ERROR($$$GeneralError, "Branch does not exist")
410+
quit $$$ERROR($$$GeneralError, "Selected branch does not exist"_$C(10))
411411
}
412412
k outStream, errStream
413413
do ..RunGitWithArgs(.errStream, .outStream, "checkout", targetBranchName)

0 commit comments

Comments
 (0)