diff --git a/cmd/cli/item.go b/cmd/cli/item.go index e8d6e55..e8f8ed7 100644 --- a/cmd/cli/item.go +++ b/cmd/cli/item.go @@ -99,7 +99,7 @@ func splitStatusLineToLines(statusLine string, printedLineLength, realLineLength func (i item) drawStatusLine(compactRendering bool, printedLineLength, realLineLength int) []string { if i.isRaw { - return splitStatusLineToLines(" "+i.cmdLine, printedLineLength, realLineLength) + return splitStatusLineToLines(i.cmdLine, printedLineLength, realLineLength) } secs := int64(i.realtimeBefore) nsecs := int64((i.realtimeBefore - float64(secs)) * 1e9)