cmd/faucet: fix period to days conversion

This commit is contained in:
Péter Szilágyi 2017-05-04 11:43:18 +03:00
parent 8a28408616
commit 464f30d301
No known key found for this signature in database
GPG Key ID: E9AE538CEDF8293D
1 changed files with 5 additions and 4 deletions

View File

@ -108,11 +108,12 @@ func main() {
if period%60 == 0 {
period /= 60
periods[i] = fmt.Sprintf("%d hours", period)
}
if period%24 == 0 {
period /= 24
periods[i] = fmt.Sprintf("%d days", period)
}
}
if period == 1 {
periods[i] = strings.TrimSuffix(periods[i], "s")
}