email: use strconv.Itoa instead of sprintf

pull/75/head
Harvey Tindall 3 years ago
parent dbe7e2e659
commit 30f16e7207
No known key found for this signature in database
GPG Key ID: BBC65952848FB1A2

@ -11,6 +11,7 @@ import (
"io"
"net/smtp"
"os"
"strconv"
"strings"
"sync"
textTemplate "text/template"
@ -108,13 +109,13 @@ func (emailer *Emailer) formatExpiry(expiry time.Time, tzaware bool, datePattern
}
_, _, days, hours, minutes, _ := timeDiff(expiry, currentTime)
if days != 0 {
expiresIn += fmt.Sprintf("%dd ", days)
expiresIn += strconv.Itoa(days) + "d "
}
if hours != 0 {
expiresIn += fmt.Sprintf("%dh ", hours)
expiresIn += strconv.Itoa(hours) + "h "
}
if minutes != 0 {
expiresIn += fmt.Sprintf("%dm ", minutes)
expiresIn += strconv.Itoa(minutes) + "m "
}
expiresIn = strings.TrimSuffix(expiresIn, " ")
return

Loading…
Cancel
Save