template: remove redundant parentheses. (#5904)

Signed-off-by: johncming <johncming@yahoo.com>
This commit is contained in:
johncming 2019-08-16 16:41:01 +08:00 committed by Brian Brazil
parent 5cb32d67f9
commit 099b0d7c29
1 changed files with 1 additions and 1 deletions

View File

@ -219,7 +219,7 @@ func NewTemplateExpander(
seconds := int64(v) % 60
minutes := (int64(v) / 60) % 60
hours := (int64(v) / 60 / 60) % 24
days := (int64(v) / 60 / 60 / 24)
days := int64(v) / 60 / 60 / 24
// For days to minutes, we display seconds as an integer.
if days != 0 {
return fmt.Sprintf("%s%dd %dh %dm %ds", sign, days, hours, minutes, seconds)