Update go/cmd/dolt/commands/pull.go

Co-authored-by: Jason Fulghum <jason@dolthub.com>
This commit is contained in:
Neil Macneale IV
2024-01-18 13:21:11 -08:00
committed by GitHub
parent 6a1389437b
commit 329cf5ebbc

View File

@@ -146,7 +146,7 @@ func (cmd PullCmd) Exec(ctx context.Context, commandStr string, args []string, d
return
}
if len(rows) != 1 {
err = fmt.Errorf("Runtime error: merge operation returned unexpected number of rows: ", len(rows))
err = fmt.Errorf("Runtime error: merge operation returned unexpected number of rows: %d", len(rows))
errChan <- err
return
}