From 92c15c6a0b1812173a69fffb96de37ca26c94c09 Mon Sep 17 00:00:00 2001 From: Simon Let Date: Sat, 9 May 2020 22:13:13 +0200 Subject: [PATCH] minor fix --- cmd/cli/item.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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)