Skip to content

Commit 0a28ce4

Browse files
authored
fix NewLine (#11893)
1 parent 5e1d8f6 commit 0a28ce4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

cli/filplus.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -330,7 +330,7 @@ var filplusListAllocationsCmd = &cli.Command{
330330
tablewriter.Col(pieceSize),
331331
tablewriter.Col(tMin),
332332
tablewriter.Col(tMax),
333-
tablewriter.NewLineCol(expr))
333+
tablewriter.Col(expr))
334334
// populate it with content
335335
for _, alloc := range allocs {
336336
tw.Write(alloc)
@@ -479,7 +479,7 @@ var filplusListClaimsCmd = &cli.Command{
479479
tablewriter.Col(tMin),
480480
tablewriter.Col(tMax),
481481
tablewriter.Col(tStart),
482-
tablewriter.NewLineCol(sector))
482+
tablewriter.Col(sector))
483483
// populate it with content
484484
for _, alloc := range claimList {
485485

0 commit comments

Comments
 (0)