Skip to content

Commit c706b2f

Browse files
committed
modify error message
1 parent c05d81d commit c706b2f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cmd/update.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -184,5 +184,5 @@ func checkPartialSuccess(row int, err error) error {
184184
return err
185185
}
186186
// Tell the user how to restart.
187-
return fmt.Errorf("%v\n\nSome rows were successfully processed, but there was an error on row %d (note: row 0 is the header row). Fix the error and rerun with '--start_row=%d' to retry, or rerun with '--start_row=%d' to skip over the bad row", err, row, row, row+1)
187+
return fmt.Errorf("%v\n\nSome rows were successfully processed, but there was an error on row %d (row 0 is the header row).\nFix the error and rerun with '--start_row=%d' to retry, or rerun with '--start_row=%d' to skip over the bad row", err, row, row, row+1)
188188
}

0 commit comments

Comments
 (0)